import * as React from "react"; import { StoryFn, Meta } from "@storybook/react"; import Expandable from "../components/Expandable"; export default { title: "Actions/Expandable", component: Expandable } as Meta; const Template: StoryFn = args => (
Check out this exciting content
); export const Default = { render: Template };