This primer will try to explain what recompose is by writing a non-recompose React component and then progressively refactoring it until you end up using withState
from recompose.
import React, { Component} from 'react';
class MyComponent extends Component {
state = {
isShowingStuff: false,
}