import * as React from 'react'; import { HomeIcon, PathMissingIcon } from '@patternfly/react-icons'; import { Button, EmptyState, EmptyStateBody, EmptyStateFooter, EmptyStateVariant, PageSection, } from '@patternfly/react-core'; const NotFound: React.FC = () => ( Another page might have what you need. Return to the home page. ); export default NotFound;