Files
Torkel Ödegaard 43def489f4 PageNotFound: G10 Redesign (#66909)
* PageNotFound: G10 Redesign

* Make into a reusable component so we can have a more specific version for dashboards

* Make graphic abit smaller
2023-04-28 08:18:14 +02:00

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>
);
}