Add stubbed method for empty library test

This commit is contained in:
Jackson Harper
2022-04-21 14:05:18 -07:00
parent 510a95f393
commit 46cb7abc04

View File

@ -14,6 +14,8 @@ export default {
export const EmptyLibraryStory: ComponentStory<typeof EmptyLibrary> = (args: any) => {
return (
<EmptyLibrary />
<EmptyLibrary onAddLinkClicked={() => {
console.log('onAddLinkClicked')
}} />
)
}