import * as React from "react"; import { StoryFn, Meta } from "@storybook/react"; import { ResetButton } from "../../"; import { Text } from "../../styleUtils/typography"; export default { title: "Actions/ResetButton", component: ResetButton } as Meta; const Template: StoryFn = args => (
{`The `} red text {` is a button, but it is not styled like one`}
); export const Default = { render: Template };