[20/n][Storybook] SearchBar

This commit is contained in:
Vivian Phung 2024-05-14 19:09:58 -04:00 committed by Vivian Phung
parent b34e0783c1
commit 0fb1127b96

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 = {};