blob: b6695147780d89d9c0ba441802c3996a695d65d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import Headlines from "./modules/headlines";
import Notifications from "./modules/notifications";
export default () => (
<box vertical className="pane alerts" name="alerts">
<Notifications />
<box className="separator" />
<Headlines />
</box>
);
|