import type { Meta, StoryObj } from '@storybook/html-vite'; export default { title: 'Components/Navigation-Bar' } satisfies Meta; export const RightAligned: StoryObj = { render() { return ` `; } }; export const LeftAligned: StoryObj = { render() { return ` `; } };