import { Meta, Story } from '@storybook/react'; import { InsightsBox, Props } from './InsightsBox'; export default { component: InsightsBox, header: 'Components/InsightsBox', } as Meta; function Template({ header, content }: Props) { return ; } export const Primary: Story = Template.bind({}); Primary.args = { header: 'Insights box header', content: 'This is the content of the insights box', };