#13 Made login page form
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import "./App.css";
|
||||
import { Route } from "wouter";
|
||||
import HomePage from "./pages/HomePage";
|
||||
import LoginPage from "./pages/LoginPage";
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div className="App">
|
||||
<Route path="/">
|
||||
<HomePage />
|
||||
</Route>
|
||||
<Route path="/" component={HomePage} />
|
||||
<Route path="/login" component={LoginPage} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user