bluesky client without react native baggage written in sveltekit
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 26 lines 790 B view raw
1<script module> 2 import { defineMeta } from '@storybook/addon-svelte-csf'; 3 import Header from './Header.svelte'; 4 import { fn } from 'storybook/test'; 5 6 // More on how to set up stories at: https://storybook.js.org/docs/writing-stories 7 const { Story } = defineMeta({ 8 title: 'Example/Header', 9 component: Header, 10 // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs 11 tags: ['autodocs'], 12 parameters: { 13 // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout 14 layout: 'fullscreen' 15 }, 16 args: { 17 onLogin: fn(), 18 onLogout: fn(), 19 onCreateAccount: fn() 20 } 21 }); 22</script> 23 24<Story name="Logged In" args={{ user: { name: 'Jane Doe' } }} /> 25 26<Story name="Logged Out" />