Guest User

Untitled

a guest
Oct 15th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. '.source.js':
  2. 'react component':
  3. 'prefix' : 'rc'
  4. 'body' : """
  5. class $1 extends React.Component {
  6. constructor(props) {
  7. super(props);
  8. this.state = {
  9. value : ${2:null},
  10. };
  11. }
  12. render() {
  13. return(
  14. <div>$3</div>
  15. );
  16. }
  17. }
  18. """
Add Comment
Please, Sign In to add comment