diff --git a/.storybook/components/SectionList.tsx b/.storybook/components/SectionList.tsx index f8153c67..1b183fba 100644 --- a/.storybook/components/SectionList.tsx +++ b/.storybook/components/SectionList.tsx @@ -3,14 +3,16 @@ import type { PropsWithChildren } from 'react' type SectionListProps = { grid?: 'row' | 'grid' + classes?: string } const SectionList = ({ children, + classes, grid = 'row', }: PropsWithChildren) => { return ( -
+