'use strict'

import React from 'react'
import {ApToast, ApToastStyle} from 'apeman-react-toast'

const ExampleComponent = React.createClass({
  render () {
    return (
      <div>
        <ApToastStyle />
        <ApToast/>
      </div>
    )
  }
})
