Last active
February 6, 2020 20:21
-
-
Save mahammedzkhan/25290740f3a9ca05008dd592c6e20bf4 to your computer and use it in GitHub Desktop.
React templates for Jetbrains IDE's
This file contains 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 React from 'react'; | |
export default class ${NAME} extends React.Component{ | |
render() { | |
return( | |
<div /> | |
) | |
} | |
} |
This file contains 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 React from 'react'; | |
const ${NAME} = () => ( | |
<div /> | |
); | |
export default ${NAME}; |
This file contains 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 { styled } from 'styled-components'; | |
const ${NAME} = styled.div``; | |
export default ${NAME}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment