Last active
February 5, 2023 14:53
-
-
Save jsorkin24/46df698978a0f09a0539769a415af1d9 to your computer and use it in GitHub Desktop.
App.js file for Contact Form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react' | |
| import logo from './logo.svg' | |
| import './App.css' | |
| import ContactForm from './contact' | |
| function App() { | |
| return ( | |
| <div className="App"> | |
| <header className="App-header"> | |
| <img src={logo} className="App-logo" alt="logo" /> | |
| <ContactForm /> | |
| <a | |
| className="App-link" | |
| href="https://reactjs.org" | |
| target="_blank" | |
| rel="noopener noreferrer" | |
| > | |
| </a> | |
| </header> | |
| </div> | |
| ) | |
| } | |
| export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how do you embed this page as hyperlink in webpage?