mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-10 18:26:24 +00:00
11 lines
367 B
TypeScript
11 lines
367 B
TypeScript
![]() |
import Component from '@ember/component';
|
||
|
// @ts-ignore: Ignore import of compiled template
|
||
|
import template from '../templates/components/page-not-found';
|
||
|
import { layout } from '@ember-decorators/component';
|
||
|
|
||
|
/**
|
||
|
* Simple template only component to render the page not found for Data Hub
|
||
|
*/
|
||
|
@layout(template)
|
||
|
export default class PageNotFound extends Component {}
|