Skip to content

Instantly share code, notes, and snippets.

@parrotmac
Created October 20, 2017 03:46
Show Gist options
  • Save parrotmac/10470d14d74a054f5ec34799bdcd1aec to your computer and use it in GitHub Desktop.
Save parrotmac/10470d14d74a054f5ec34799bdcd1aec to your computer and use it in GitHub Desktop.
Webstorm Template for creating a React Component
import React, {Component} from 'react'
class ${NAME} extends Component {
render() {
return (
<div>${NAME}</div>
)
}
}
export default ${NAME}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment