Created
May 17, 2018 12:16
-
-
Save milichev/778c39cb01b62d73742c783f5db221fc to your computer and use it in GitHub Desktop.
WebStorm Templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
export interface ${NAME}Props { | |
} | |
interface ${NAME}State { | |
} | |
export class ${NAME} extends React.Component<${NAME}Props, ${NAME}State> { | |
state: ${NAME}State = {}; | |
render (): React.ReactNode { | |
const { | |
props: {}, | |
state: {}, | |
} = this; | |
return ( | |
<div> | |
a | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment