import type { Meta } from '@storybook/react-vite'; import type { FooterProps } from './Footer.tsx'; import { Footer as Component, dnrStandardLinks, GovOpsAddress, NaturalResourcesAddress, } from './Footer.tsx'; const meta: Meta = { component: Component, parameters: { layout: 'fullscreen', }, tags: ['autodocs'], argTypes: {}, args: {}, }; export default meta; export const Example = {}; export const ExplicitExample = (args: FooterProps) => ( } columnOne={{ title: 'My links', links: [{ url: 'https://gis.utah.gov/', title: 'A custom link' }], }} columnTwo={{ title: '', links: [], }} columnThree={{ title: '', links: [], }} /> ); export const NaturalResourcesExample = (args: FooterProps) => ( } {...dnrStandardLinks({ repository: 'agrc/electrofishing-query' })} /> );