Skip to content

Instantly share code, notes, and snippets.

View blittle's full-sized avatar
🇺🇦

Bret Little blittle

🇺🇦
View GitHub Profile
@blittle
blittle / cloudSettings
Last active September 17, 2021 14:59 — forked from joeldenning/cloudSettings
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-09-17T14:59:17.023Z","extensionVersion":"v3.4.3"}
@blittle
blittle / babel-types.md
Created April 13, 2020 21:25 — forked from joshblack/babel-types.md
Documentation of all the Babel type methods

Babel Types

Hopefully will be documentation of unclear methods available for Babel Types

  • is
  • isType
  • shallowEqual
  • appendToMemberExpression
  • prependToMemberExpression
  • ensureBlock
const PricingWrap = function ({props}) {
return <div className="pricing" style={{ opacity: purchasing ? 0.25 : '' }}>
{props.children}
</div>
}
const Pricing = React.createClass({
// ...
render() {
// ...