"use strict";

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

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