mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 21:02:16 +08:00

* PageNotFound: G10 Redesign * Make into a reusable component so we can have a more specific version for dashboards * Make graphic abit smaller
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
import React from 'react';
|
|
|
|
import { PageLayoutType } from '@grafana/data';
|
|
|
|
import { Page } from '../Page/Page';
|
|
|
|
import { EntityNotFound } from './EntityNotFound';
|
|
|
|
export function PageNotFound() {
|
|
return (
|
|
<Page navId="home" layout={PageLayoutType.Canvas} pageNav={{ text: 'Page not found' }}>
|
|
<EntityNotFound entity="Page" />
|
|
</Page>
|
|
);
|
|
}
|