diff --git a/src/stories/components/Settings.stories.tsx b/src/stories/components/Settings.stories.tsx new file mode 100644 index 00000000..68ecc9c0 --- /dev/null +++ b/src/stories/components/Settings.stories.tsx @@ -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; +export default meta; + +type Story = StoryObj; + +export const Default: Story = { + args: {}, +}; diff --git a/src/views/components/Settings.tsx b/src/views/components/Settings.tsx new file mode 100644 index 00000000..b83e4373 --- /dev/null +++ b/src/views/components/Settings.tsx @@ -0,0 +1,14 @@ +import React from 'react'; + +type Props = { + className?: string; +}; + +/** + * Component to hold everything for the settings page + * @param props className + * @returns The content for the settings page + */ +export default function Settings({ className }: Props) { + return
this will be finished laterrrrrrr
; +}