Create Signout Page
This commit is contained in:
parent
02d06b2385
commit
5628b1dc1e
|
@ -10,6 +10,7 @@ import { About } from "./pages/About"
|
||||||
import { Home } from "./pages/Home"
|
import { Home } from "./pages/Home"
|
||||||
import { Contact } from "./pages/Contact"
|
import { Contact } from "./pages/Contact"
|
||||||
import { Signup } from "./pages/Signup"
|
import { Signup } from "./pages/Signup"
|
||||||
|
import { Signout } from "./pages/Signout"
|
||||||
|
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
export function Signout() {
|
||||||
|
return (
|
||||||
|
<Container>
|
||||||
|
<Row>
|
||||||
|
<Col>
|
||||||
|
Signout
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue