import React, { useState } from "react"; import { ReportPage } from "./ReportPage.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; import { SegmentControl } from "./SegmentControl.js"; import Card from "./Card.js"; export default { component: ReportPage, title: "Components/ReportPage", decorators: [ReportDecorator], }; export const reportPage = () => { const [tab, setTab] = useState("page1"); const enableAllTabs = false; return ( <>
setTab(segment)} segments={[ { id: "page1", label: "Page 1" }, { id: "page2", label: "Page 2" }, ]} />
); };