* docs: add jsdoc * feat: change enums to as const objects * chore(test): add themeColors.test.ts * fix: fix tests and bugs with strings.ts util * fix: path alias imports and tsconfig file bug * fix: remove --max-warnings 0
20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
import Settings from '@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: {},
|
|
};
|