Guest User

Untitled

a guest
Nov 17th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import logo from './logo.svg';
  3. import './App.css';
  4.  
  5. import SimpleForm from './SimpleForm';
  6.  
  7. class App extends Component {
  8. render() {
  9. return (
  10. <div className="App">
  11. <header className="App-header">
  12. <img src={logo} className="App-logo" alt="logo" />
  13. <h1 className="App-title">Simple LeadFormly React</h1>
  14. </header>
  15. <SimpleForm />
  16. </div>
  17. );
  18. }
  19. }
  20.  
  21. export default App;
Add Comment
Please, Sign In to add comment