feat: add empty settings component - waiting on design

This commit is contained in:
DhruvArora-03
2024-02-17 13:02:06 -06:00
committed by doprz
parent 387b508e40
commit 9d0f210548
2 changed files with 33 additions and 0 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: {},
};