Create Signout Page

This commit is contained in:
Ray 2023-09-19 09:01:53 +00:00 committed by GitHub
parent 02d06b2385
commit 5628b1dc1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -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
View File

@ -0,0 +1,11 @@
export function Signout() {
return (
<Container>
<Row>
<Col>
Signout
</Col>
</Row>
</Container>
);
}