import type { Meta, StoryObj } from '@storybook/react'; import { GlobalSearchBar } from './GlobalSearchBar'; const meta: Meta = { title: 'Components/Features/Search/GlobalSearchBar', component: GlobalSearchBar, parameters: { layout: 'centered' }, tags: ['autodocs'], decorators: [ (Story) => (
), ], }; export default meta; type Story = StoryObj; export const Default: Story = { name: 'Par défaut' }; export const Focused: Story = { name: 'Focus' }; export const WithSuggestions: Story = { name: 'Avec suggestions' };