Skip to content

Instantly share code, notes, and snippets.

View LizCottrell's full-sized avatar

Eliza Cottrell LizCottrell

View GitHub Profile
@LizCottrell
LizCottrell / javascriptreact.json
Created February 5, 2019 18:07 — forked from RyKilleen/javascriptreact.json
VS Code User Snippets for Javascript React Components (Functional, Class, and Testing). https://code.visualstudio.com/docs/editor/userdefinedsnippets
{
"Stateless Component": {
"prefix": "component:stateless",
"body" : [
"import React from 'react';",
"import PropTypes from 'prop-types';",
"const propTypes = {",
"",
"};",