Measurement Candidate
This content becomes the measurement target for AutoSkeleton.
Title block and metadata
Summary paragraph with body copy
Call-to-action row
Use onMeasured to inspect generated blueprints and wire analytics around skeleton generation.
Trigger loading and inspect the latest measured blueprint
This content becomes the measurement target for AutoSkeleton.
Title block and metadata
Summary paragraph with body copy
Call-to-action row
No blueprint captured yet. Toggle loading to trigger measurement.
Raw JSON payload from onMeasured
Waiting for initial measurement.
Hook into generated blueprints
const [blueprint, setBlueprint] = useState<Blueprint | null>(null);
<AutoSkeleton
loading={loading}
onMeasured={(nextBlueprint) => {
setBlueprint(nextBlueprint);
console.log("Measured", nextBlueprint.nodes.length, "nodes");
}}
>
<YourComponent />
</AutoSkeleton>