mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Update story
This commit is contained in:
parent
21e81e1c07
commit
748a9b523f
1 changed files with 9 additions and 4 deletions
|
|
@ -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')
|
||||
}}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue