import type { Meta, StoryObj } from '@storybook/react-vite'; import { SearchBar } from './SearchBar.tsx'; type Story = StoryObj; const meta: Meta = { component: SearchBar }; export default meta; export const Default: Story = {};