Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import React, { Component, Fragment } from 'react';
  2. import GlobalStyle from './styles/GlobalStyles';
  3. import Routes from './routes';
  4.  
  5. class App extends Component {
  6. state = {};
  7.  
  8. render() {
  9. return (
  10. <Fragment>
  11. <GlobalStyle />
  12. <Routes />
  13. </Fragment>
  14. );
  15. }
  16. }
  17.  
  18. export default App;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement