Skip to content

Instantly share code, notes, and snippets.

View mcoquet's full-sized avatar
:octocat:
cruising the hyper waves

Miguel Coquet mcoquet

:octocat:
cruising the hyper waves
View GitHub Profile

Keybase proof

I hereby claim:

  • I am mcoquet on github.
  • I am mcoquet (https://keybase.io/mcoquet) on keybase.
  • I have a public key whose fingerprint is F5EA F2D9 1140 334D E186 0296 0686 96D8 BEC9 6CD2

To claim this, I am signing this object:

@mcoquet
mcoquet / index.js
Created June 29, 2017 00:42
jumpsuit getting started index.js suggestion with corrected syntax errors
// Import Jumpsuit
import React from 'react'
import { Render, State, Actions, Effect, Component } from 'jumpsuit'
// Create a state with some actions
const CounterState = State({
// Initial State
initial: { count: 0 },
// Actions
increment ({ count }) {