Skip to content

Commit

Permalink
♻️ Refactor: Remove unused import in page.tsx and fix file name case …
Browse files Browse the repository at this point in the history
…in drop-down.stories.tsx
  • Loading branch information
yulrang committed Oct 18, 2024
1 parent d854861 commit 6452b93
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import DropDown from '../components/common/input/DropDown';

export default function Home() {
return <div className="container">CREW CREW</div>;
}
2 changes: 1 addition & 1 deletion src/components/common/input/drop-down.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState } from 'react';
import { ComboboxItem } from '@mantine/core';
import { action } from '@storybook/addon-actions';
import type { Meta, StoryFn } from '@storybook/react';
import DropDown, { DropDownProps } from './DropDown';
import DropDown, { DropDownProps } from './drop-down';

const meta: Meta = {
title: 'Components/DropDown',
Expand Down

0 comments on commit 6452b93

Please sign in to comment.