diff --git a/infrastructure/eid-wallet/src/lib/fragments/AppNav/AppNav.stories.ts b/infrastructure/eid-wallet/src/lib/fragments/AppNav/AppNav.stories.ts new file mode 100644 index 00000000..60d4a38f --- /dev/null +++ b/infrastructure/eid-wallet/src/lib/fragments/AppNav/AppNav.stories.ts @@ -0,0 +1,21 @@ +import type { ComponentProps } from "svelte"; +import AppNav from "./AppNav.svelte"; + +export default { + title: "Fragments/AppNav", + component: AppNav, + tags: ["autodocs"], + render: (args: { + Component: AppNav; + props: ComponentProps; + }) => ({ + Component: AppNav, + props: args, + }), +}; + +export const Basic = { + args: { + title: "Settings", + }, +}; diff --git a/infrastructure/eid-wallet/src/lib/fragments/AppNav/AppNav.svelte b/infrastructure/eid-wallet/src/lib/fragments/AppNav/AppNav.svelte new file mode 100644 index 00000000..318bec58 --- /dev/null +++ b/infrastructure/eid-wallet/src/lib/fragments/AppNav/AppNav.svelte @@ -0,0 +1,37 @@ + + + + + \ No newline at end of file