Update story

This commit is contained in:
Jackson Harper 2023-08-28 15:25:43 +08:00
parent 21e81e1c07
commit 748a9b523f

View file

@ -12,10 +12,15 @@ export default {
},
} as ComponentMeta<typeof EmptyLibrary>
export const EmptyLibraryStory: ComponentStory<typeof EmptyLibrary> = (args: any) => {
export const EmptyLibraryStory: ComponentStory<typeof EmptyLibrary> = (
args: any
) => {
return (
<EmptyLibrary onAddLinkClicked={() => {
console.log('onAddLinkClicked')
}} />
<EmptyLibrary
searchTerm=""
onAddLinkClicked={() => {
console.log('onAddLinkClicked')
}}
/>
)
}