mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-19 04:51:13 +02:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
import { h, Component } from 'preact';
|
|
import { log } from '../utils';
|
|
|
|
export class Alerts extends Component {
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
return false;
|
|
}
|
|
|
|
render() {
|
|
return <div class="alerts-container" id="js-alerts-container" />;
|
|
}
|
|
}
|