ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
12 lines (10 loc) • 323 B
text/typescript
import { Component, Inject } from '@angular/core';
import { I18NService } from '@core';
import { OHAYO_I18N_TOKEN } from '@ohayo/theme';
({
selector: 'not-found',
templateUrl: './404.component.html',
})
export class NotFoundComponent {
constructor((OHAYO_I18N_TOKEN) public i18n: I18NService) { }
}