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