UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

12 lines (10 loc) 323 B
import { Component, Inject } from '@angular/core'; import { I18NService } from '@core'; import { OHAYO_I18N_TOKEN } from '@ohayo/theme'; @Component({ selector: 'not-found', templateUrl: './404.component.html', }) export class NotFoundComponent { constructor(@Inject(OHAYO_I18N_TOKEN) public i18n: I18NService) { } }