Skip to content

Commit

Permalink
🐛 fix(_route): browser route => hash router
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanized committed Dec 22, 2024
1 parent 0021aa1 commit f4f540a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import { HashRouter as Router, Routes, Route } from 'react-router-dom';
import { Layout } from './components/layout/Layout';
import { Home } from './pages/Home';
import { About } from './pages/About';
Expand All @@ -23,4 +23,4 @@ function App() {
);
}

export default App;
export default App;

0 comments on commit f4f540a

Please sign in to comment.