#!/usr/bin/env node

'use strict'

import React from 'react'
import {ApPureMixin} from 'apeman-react-mixin-pure'

// Define own component with the mixin
const ExampleComponent = React.createClass({
  mixins: [
    // Implement shouldComponentUpdate with shallow compare
    ApPureMixin
  ],
  render () {
    return (
      <div>{ /* ... */ }</div>
    )
  }
})
