Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import React from 'react';
  2. import Button from '@material-ui/core/Button';
  3.  
  4. const LittleApp = () => (
  5. <Button variant="contained" color="primary">
  6. Hello World
  7. </Button>
  8. );
  9.  
  10. ReactDOM.render(<LittleApp />, document.getElementById("littleApp"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement