Guest User

Untitled

a guest
Dec 13th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import React, { Component } from 'react';
  2.  
  3. // This is a example screen or the root component of the app.
  4. import ExampleScreen from './ExampleScreen';
  5.  
  6. // Import our withIntl HOC
  7. import withIntl from './withIntl';
  8.  
  9. class App extends Component {
  10. render() {
  11. return (<ExampleScreen />);
  12. }
  13. };
  14.  
  15. // use withIntl HOC for the whole App
  16. export default withIntl(App);
Add Comment
Please, Sign In to add comment