diff --git a/src/components/domain/Value/index.stories.tsx b/src/components/domain/PhilosophyValues/index.stories.tsx similarity index 86% rename from src/components/domain/Value/index.stories.tsx rename to src/components/domain/PhilosophyValues/index.stories.tsx index 277c857..575012c 100644 --- a/src/components/domain/Value/index.stories.tsx +++ b/src/components/domain/PhilosophyValues/index.stories.tsx @@ -1,17 +1,17 @@ -import { Value as DomainValue } from '.'; +import { PhilosophyValues as DomainPhilosophyValues } from '.'; import type { Meta, StoryObj } from '@storybook/react'; -const meta: Meta = { - title: 'Domain/Value', - component: DomainValue, +const meta: Meta = { + title: 'Domain/PhilosophyValues', + component: DomainPhilosophyValues, }; export default meta; -type Story = StoryObj; -export const Value: Story = { +type Story = StoryObj; +export const PhilosophyValues: Story = { render: () => ( - = ({ values }) => { +const PhilosophyValues: FC = ({ values }) => { return (
@@ -42,4 +42,4 @@ const Value: FC = ({ values }) => { ); }; -export { Value }; +export { PhilosophyValues }; diff --git a/src/components/domain/Value/styles.css.ts b/src/components/domain/PhilosophyValues/styles.css.ts similarity index 100% rename from src/components/domain/Value/styles.css.ts rename to src/components/domain/PhilosophyValues/styles.css.ts