lumen-foundation-apps
Version:
'React port of foundation-apps'
20 lines (18 loc) • 602 B
JSX
var React = require('react');
var Notification = require('../../lib/notification');
var Trigger = require('../../lib/trigger')
var Static = React.createClass({
render: function () {
return (
<div>
<Trigger open='my-notify'>
<a className='button'>Static notifications</a>
</Trigger>
<Notification.Static id='my-notify' title="My static notification" image="">
<p>This notification is static, it works similarly to a programmatic with some subtle differences</p>
</Notification.Static>
</div>
);
}
});
module.exports = Static;