[21/n][Storybook] SearchBar (#60)

This commit is contained in:
Vivian Phung 2024-05-14 19:29:46 -04:00 committed by GitHub
commit ca8863e1d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,15 @@
import { StoryObj, Meta } from '@storybook/react';
import SearchBar from 'components/SearchBar';
const meta: Meta<typeof SearchBar> = {
title: 'Components/SearchBar',
component: SearchBar,
tags: ['autodocs'],
};
export default meta;
type Story = StoryObj<typeof SearchBar>;
export const Default: Story = {};