Skip to content

Instantly share code, notes, and snippets.

View wojciech-bilicki's full-sized avatar

Wojciech Bilicki wojciech-bilicki

  • Oke Software
  • Gdańsk
View GitHub Profile
@MoOx
MoOx / Stateful.js
Created May 4, 2016 12:56
Stateful functional component (with specific states)
// @flow
import React, { Component } from "react"
type Props = Object
type State = {
hovered: boolean,
focused: boolean,
depressed: boolean,