Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save parrotmac/bef6a983bcf2ea2b700b785d09aede2c to your computer and use it in GitHub Desktop.
Save parrotmac/bef6a983bcf2ea2b700b785d09aede2c to your computer and use it in GitHub Desktop.
Webstorm Template for React Components (Typescript)
import React, { Component } from 'react';
interface IProps {
// TODO
}
class ${NAME} extends Component<IProps> {
public render(): React.ReactNode {
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