UNPKG

lumen-foundation-apps

Version:
18 lines (16 loc) 576 B
var React = require('react'); var Notification = require('../../lib/notification'); var Trigger = require('../../lib/trigger'); var AdvancedNotification = React.createClass({ render: function () { return ( <div> <Trigger notify="main-notifications" title="My notification" content="Notification example" color="success" position="top-left"> <a className="button">Dynamic Notification</a> </Trigger> <Notification.Set id="main-notifications"></Notification.Set> </div> ); } }); module.exports = AdvancedNotification;