UNPKG

252 BJSXView Raw
1'use strict'
2
3import React from 'react'
4import {ApToast, ApToastStyle} from 'apeman-react-toast'
5
6const ExampleComponent = React.createClass({
7 render () {
8 return (
9 <div>
10 <ApToastStyle />
11 <ApToast/>
12 </div>
13 )
14 }
15})