Skip to content

Instantly share code, notes, and snippets.

@bigandy
Created November 15, 2017 15:42
Show Gist options
  • Save bigandy/6cab5403c89495a7d5647e11c05a87f4 to your computer and use it in GitHub Desktop.
Save bigandy/6cab5403c89495a7d5647e11c05a87f4 to your computer and use it in GitHub Desktop.
SimpleForm React App.js
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import SimpleForm from './SimpleForm';
class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Simple LeadFormly React</h1>
</header>
<SimpleForm />
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment