Skip to content

Commit

Permalink
test: 경로 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Cllaude99 committed May 10, 2024
1 parent 691c2e7 commit f84e068
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ThemeProvider } from 'styled-components';
import { RouterProvider } from 'react-router-dom';
import { router } from './routes/router';
import { theme } from './styles/shared/theme';
import { router } from './routes/router.tsx';
import { theme } from './styles/shared/theme.ts';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';

const queryClient = new QueryClient();
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import HomeIcon from '@/assets/imgs/home.svg?react';
import HomeIcon from '../assets/imgs/home.svg?react';
import styled from 'styled-components';

export default function Home() {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/router.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Home from '@/pages/home';
import Home from '../pages/home.tsx';
import { createBrowserRouter } from 'react-router-dom';

export const router = createBrowserRouter([
Expand Down

0 comments on commit f84e068

Please sign in to comment.