This commit is contained in:
Abhinav Chadaga
2024-02-17 14:37:59 -06:00
4 changed files with 221 additions and 145 deletions

View File

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