Skip to content

Instantly share code, notes, and snippets.

@mahammedzkhan
Last active February 6, 2020 20:21
Show Gist options
  • Save mahammedzkhan/25290740f3a9ca05008dd592c6e20bf4 to your computer and use it in GitHub Desktop.
Save mahammedzkhan/25290740f3a9ca05008dd592c6e20bf4 to your computer and use it in GitHub Desktop.
React templates for Jetbrains IDE's
import React from 'react';
export default class ${NAME} extends React.Component{
render() {
return(
<div />
)
}
}
import React from 'react';
const ${NAME} = () => (
<div />
);
export default ${NAME};
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