UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

17 lines (15 loc) 386 B
import { Component } from '@angular/core'; import format from 'date-fns/format'; @Component({ selector: 'dev-lazy-layout', template: ` <page-header></page-header> <h2>Lazy Module, {{ now | json }}</h2> <div class="p-lg"> <router-outlet></router-outlet> </div> `, }) export class DevLazyLayoutComponent { now = format(new Date(), 'yyyy-MM-dd HH:mm:ss'); }