Skip to content

Instantly share code, notes, and snippets.

@dburles
Created July 17, 2017 05:48
Show Gist options
  • Save dburles/325330e675b96118201cb8547ee773e3 to your computer and use it in GitHub Desktop.
Save dburles/325330e675b96118201cb8547ee773e3 to your computer and use it in GitHub Desktop.
"React component boiler": {
"prefix": "react",
"body": [
"import React from 'react';",
"import PropTypes from 'prop-types';",
"",
"function ${NewComponent}() {",
" return (",
" $1",
" );",
"}",
"",
"${NewComponent}.propTypes = {",
"};",
"",
"export default ${NewComponent};",
""
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment