add new component

This commit is contained in:
2024-05-03 19:15:26 +02:00
parent 7af2b43fed
commit 17704dbf2e
5 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import type { Meta, StoryObj } from '@storybook/react'
import { Component } from './'
const meta = {
component: Component,
tags: ['autodocs'],
title: 'Components/Component',
} satisfies Meta<typeof Component>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}

View File

@@ -0,0 +1,6 @@
import s from './component.module.scss'
export type ComponentProps = {}
export const Component = ({}: ComponentProps) => {
return <div>Component</div>
}

View File

@@ -0,0 +1 @@
export * from './component'

View File

@@ -1,3 +1,4 @@
export * from './component'
export * from './ui'
export * from './auth'
export * from './profile'