Make the search bar a module

Resolves #118
This commit is contained in:
ajnart
2022-05-17 02:04:44 +02:00
parent 16b86870c4
commit 4cb8539143
7 changed files with 17 additions and 32 deletions

View File

@@ -0,0 +1,10 @@
import SearchBar from './SearchModule';
export default {
title: 'Search bar',
config: {
searchBar: false,
},
};
export const Default = (args: any) => <SearchBar {...args} />;