Create Contact webpage

This commit is contained in:
Ray 2023-09-05 09:06:09 +00:00 committed by GitHub
parent 0726adcb28
commit b710dadc75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import "react-bootstrap/Nav"
import './App.css'; import './App.css';
import { About } from "./pages/About"; import { About } from "./pages/About";
import { Home } from "./pages/Home"; import { Home } from "./pages/Home";
import { Contact } from "./pages/Contact";
import Container from "react-bootstrap/Container"; import Container from "react-bootstrap/Container";
import { Nav, Navbar } from "react-bootstrap/esm"; import { Nav, Navbar } from "react-bootstrap/esm";

3
src/pages/Contact.js Normal file
View File

@ -0,0 +1,3 @@
export function Contact ( props ) {
return ( <h1>{props.greeting} </h1>)
}