-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add empty settings component - waiting on design
- Loading branch information
1 parent
387b508
commit 9d0f210
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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: {}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <div className={className}>this will be finished laterrrrrrr</div>; | ||
} |