blob: e58a8e4d3616c379b334d57f21b10c0b0824fdae (
plain)
1
2
3
4
5
6
7
8
|
import * as riot from 'riot';
export default message => {
const notification = document.body.appendChild(document.createElement('mk-ui-notification'));
riot.mount(notification, {
message: message
});
};
|