'use strict'

import React from 'react'
import {ApTouchable, ApTouchableStyle} from 'apeman-react-touchable'

const ExampleComponent = React.createComponent({
  render() {
    return (
      <div>
        <ApTouchableStyle />
        <ApTouchable onPan={ () => { /* ... */ } }/>
      </div>
    )
  }
})
