diff --git a/src/App.js b/src/App.js index f4f647b..2602ab7 100644 --- a/src/App.js +++ b/src/App.js @@ -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() { diff --git a/src/pages/Signout.js b/src/pages/Signout.js new file mode 100644 index 0000000..9efb1ad --- /dev/null +++ b/src/pages/Signout.js @@ -0,0 +1,11 @@ +export function Signout() { + return ( + + + + Signout + + + + ); +} \ No newline at end of file