mirror of
https://github.com/reiyua/RaysBookClub.git
synced 2026-01-20 15:37:47 +00:00
Create Signout Page
This commit is contained in:
parent
02d06b2385
commit
5628b1dc1e
2 changed files with 12 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ import { About } from "./pages/About"
|
|||
import { Home } from "./pages/Home"
|
||||
import { Contact } from "./pages/Contact"
|
||||
import { Signup } from "./pages/Signup"
|
||||
import { Signout } from "./pages/Signout"
|
||||
|
||||
|
||||
function App() {
|
||||
|
|
|
|||
11
src/pages/Signout.js
Normal file
11
src/pages/Signout.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export function Signout() {
|
||||
return (
|
||||
<Container>
|
||||
<Row>
|
||||
<Col>
|
||||
Signout
|
||||
</Col>
|
||||
</Row>
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue