To receive notifications about scheduled maintenance, please subscribe to the mailing-list gitlab-operations@sympa.ethz.ch. You can subscribe to the mailing-list at https://sympa.ethz.ch
import m from 'mithril'; import ItemView from '../views/itemView'; export default class viewEvent extends ItemView { constructor() { super('events'); } view() { return m('h1', 'Hello World'); } }