diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..340652e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,13 +1,14 @@ +import React from 'react'; import { Routes, Route } from 'react-router-dom'; -import Layout from './components/Layout'; -import HomePage from './pages/HomePage'; +import HomePage from '@/pages/HomePage'; +import Layout from '@/components/Layout'; export default function App() { return ( - - }> + + } /> - - + + ); -} +} \ No newline at end of file