Skip to content

Commit

Permalink
[ENV][Fix] #1 : 불필요한 파일 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
effozen committed Nov 10, 2024
1 parent e4f1e80 commit a6b099e
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 31 deletions.
13 changes: 0 additions & 13 deletions frontend/src/component/common/button/Button.tsx

This file was deleted.

13 changes: 0 additions & 13 deletions frontend/src/component/common/nav/NaviBar.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion frontend/src/stories/Button.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from '@storybook/react';
import { fn } from '@storybook/test';

import { Button } from './Button';
import { Button } from './Button.tsx';

// More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export
const meta = {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/stories/Header.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from '@storybook/react';
import { fn } from '@storybook/test';

import { Header } from './Header';
import { Header } from './Header.tsx';

const meta = {
title: 'Example/Header',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/stories/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button } from './Button';
import { Button } from './Button.tsx';
import './header.css';

interface IUser {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/stories/Page.stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from '@storybook/react';
import { expect, userEvent, within } from '@storybook/test';

import { Page } from './Page';
import { Page } from './Page.tsx';

const meta = {
title: 'Example/Page',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/stories/Page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import { Header } from './Header';
import { Header } from './Header.tsx';
import './page.css';

interface IUser {
Expand Down

0 comments on commit a6b099e

Please sign in to comment.