Skip to content

Instantly share code, notes, and snippets.

@joshuabaker
Created December 15, 2020 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuabaker/02226b90bce7d959d5bfb95b302f8089 to your computer and use it in GitHub Desktop.
Save joshuabaker/02226b90bce7d959d5bfb95b302f8089 to your computer and use it in GitHub Desktop.
Component JSX template for Intellij
import React from 'react'
import css from '@styled-system/css';
import PropTypes from 'prop-types';
import styled from 'styled-components';
function ${NAME}() {
return <>
{'${NAME}'}
</>
}
${NAME}.propTypes = {}
${NAME}.defaultProps = {}
export default ${NAME}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment