This commit is contained in:
Maulana Sodiqin
2025-03-16 00:33:48 +07:00
parent 3964c22c66
commit 58843041db
13 changed files with 6446 additions and 919 deletions
@@ -0,0 +1,23 @@
import type { Meta, StoryObj } from '@storybook/react';
import { BrowserRouter } from 'react-router-dom';
import { Navbar } from './navbar';
const meta: Meta<typeof Navbar> = {
title: 'Components/Navbar',
component: Navbar,
argTypes: {},
decorators: [
(Story) => (
<BrowserRouter>
<div className="min-h-screen bg-gray-100 p-4">
<Story />
</div>
</BrowserRouter>
),
],
};
export default meta;
type Story = StoryObj<typeof Navbar>;
export const Default: Story = {};