feat(RegisterForm): add basic RegisterFormComponent with test coverage and storybook placeholder
This commit is contained in:
12
src/features/auth/ui/RegisterForm/RegisterForm.stories.ts
Normal file
12
src/features/auth/ui/RegisterForm/RegisterForm.stories.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import type { Meta, StoryObj } from "@storybook/react-vite";
|
||||
import { RegisterForm } from "./RegisterForm";
|
||||
|
||||
const meta: Meta<typeof RegisterForm> = {
|
||||
component: RegisterForm,
|
||||
title: "features/auth/RegisterForm",
|
||||
};
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Default: Story = {};
|
||||
Reference in New Issue
Block a user