Using React-icons. Probably need to take out later

This commit is contained in:
vivek12311
2024-02-17 16:03:28 -06:00
parent 0bc30d3d1e
commit ff4ee494b6
6 changed files with 173 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
import { Meta, StoryObj } from '@storybook/react';
import PopupMain from 'src/views/components/PopupMain';
const meta = {
title: 'Components/Common/PopupMain',
component: PopupMain,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
argTypes: {
},
} satisfies Meta<typeof PopupMain>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
args: {
},
};