Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3.  
  4. import Button from './button';
  5. import getConfig from './config';
  6. import styles from './styles';
  7.  
  8. const App = () => (
  9. <Button config={getConfig()} style={styles.button} />
  10. );
  11.  
  12. ReactDOM.render(<App />, document.getElementById('app'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement