Files
awx/awx/ui_next/src/screens/NotFound.jsx

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;