Skip to content

Instantly share code, notes, and snippets.

@jsorkin24
Last active February 5, 2023 14:53
Show Gist options
  • Select an option

  • Save jsorkin24/46df698978a0f09a0539769a415af1d9 to your computer and use it in GitHub Desktop.

Select an option

Save jsorkin24/46df698978a0f09a0539769a415af1d9 to your computer and use it in GitHub Desktop.
App.js file for Contact Form
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
@sinful-psyche
Copy link

how do you embed this page as hyperlink in webpage?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment