import * as React from "react"; import Caption from "./Caption"; export default { title: "Modules|Properties/Individual Properties/Caption", component: Caption, excludeStories: /.*Data$/, }; export const Default: any = () => { const [caption, setCaption] = React.useState("This is a test!"); return ( <>
{caption}
{ console.log("Caption Changed", value); setCaption(value); }} value={caption} /> ); }; Default.story = { parameters: { jest: ["Height"], }, };