Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react';
  2. import './App.css';
  3. import SearchBar from './SearchBar';
  4.  
  5. class App extends React.Component {
  6.   render() {
  7.     return (
  8.       <div className="ui container" style={{ marginTop: '10px' }}>
  9.         <SearchBar />
  10.       </div>
  11.     );
  12.   }
  13. }
  14.  
  15. export default App;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement