diff --git a/src/App.js b/src/App.js index 8b71d8e..bf9426f 100644 --- a/src/App.js +++ b/src/App.js @@ -8,6 +8,7 @@ import "react-bootstrap/Nav" import './App.css'; import { About } from "./pages/About"; import { Home } from "./pages/Home"; +import { Contact } from "./pages/Contact"; import Container from "react-bootstrap/Container"; import { Nav, Navbar } from "react-bootstrap/esm"; diff --git a/src/pages/Contact.js b/src/pages/Contact.js new file mode 100644 index 0000000..569fe39 --- /dev/null +++ b/src/pages/Contact.js @@ -0,0 +1,3 @@ +export function Contact ( props ) { + return (

{props.greeting}

) +} \ No newline at end of file