You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
303 B
14 lines
303 B
import { HashRouter, Switch, Route } from "react-router-dom";
|
|
import Index from "./pages/Index/Index";
|
|
import "./App.scss";
|
|
function App() {
|
|
return (
|
|
<HashRouter basename="">
|
|
<Switch>
|
|
<Route path="/" component={Index} />
|
|
</Switch>
|
|
</HashRouter>
|
|
);
|
|
}
|
|
|
|
export default App;
|
|
|