mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-01 05:31:49 -05:00
16 lines
307 B
JavaScript
16 lines
307 B
JavaScript
import React from 'react';
|
|
import { PageSection, Card } from '@patternfly/react-core';
|
|
import ContentError from '@components/ContentError';
|
|
|
|
function NotFound() {
|
|
return (
|
|
<PageSection>
|
|
<Card>
|
|
<ContentError isNotFound />
|
|
</Card>
|
|
</PageSection>
|
|
);
|
|
}
|
|
|
|
export default NotFound;
|