import React from "react"; import ToolbarCard from "./ToolbarCard.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; import { SimpleButton } from "./SimpleButton.js"; export default { component: ToolbarCard, title: "Components/Card/ToolbarCard", decorators: [ReportDecorator], }; export const titleOnly = () => (

Body text goes here.

); const items = (
); export const buttons = () => (

Body text goes here.

);