Skip to content

Commit

Permalink
test: 필요없는 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
feb-dain committed Oct 12, 2023
1 parent fc7c98a commit fcec74a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
11 changes: 1 addition & 10 deletions frontend/.storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Preview } from '@storybook/react';
import { initialize, mswDecorator } from 'msw-storybook-addon';

import React from 'react';
import { MemoryRouter, createBrowserRouter } from 'react-router-dom';
import { MemoryRouter } from 'react-router-dom';

import { QueryClient, QueryClientProvider } from '@tanstack/react-query';

Expand All @@ -11,15 +11,6 @@ import { GlobalStyle } from '../src/style/GlobalStyle';

initialize();

export const router = createBrowserRouter([
{
path: '/',
},
{
path: '/google',
},
]);

const queryClient = new QueryClient();

const preview: Preview = {
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/ui/NotFound/NotFound.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import NotFound from './NotFound';

const meta = {
component: NotFound,
title: 'UI/NotFound',
tags: ['autodocs'],
} satisfies Meta<typeof NotFound>;

Expand Down

0 comments on commit fcec74a

Please sign in to comment.