some work

This commit is contained in:
Abhinav Chadaga
2024-02-14 14:30:24 -06:00
parent a41cb3ed87
commit 874f8d56cb
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { Meta } from '@storybook/react';
import { Course } from 'src/shared/types/Course';
const testCourse: Course = {
}
const meta: Meta<typeof CoursePopup2> = {
component: CoursePopup2,
};
export default meta;
type Story = StoryObj<typeof meta>;
export const Open: Story = {
};