generated from openshift/console-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from lokanandaprabhu/feature/adding-k8s-overv…
…iew-page ODC-7629: Add pipelines overview page for cluster/live data
- Loading branch information
Showing
34 changed files
with
3,090 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import * as React from 'react'; | ||
import { Helmet } from 'react-helmet'; | ||
import { useTranslation } from 'react-i18next'; | ||
import { | ||
EmptyState, | ||
EmptyStateHeader, | ||
EmptyStateVariant, | ||
} from '@patternfly/react-core'; | ||
|
||
export const ErrorPage404: React.FC = () => { | ||
const { t } = useTranslation('plugin__pipelines-console-plugin'); | ||
return ( | ||
<div> | ||
<Helmet> | ||
<title>{t('Page Not Found (404)')}</title> | ||
</Helmet> | ||
<EmptyState variant={EmptyStateVariant.lg}> | ||
<EmptyStateHeader | ||
titleText={t('Page Not Found (404)')} | ||
headingLevel="h4" | ||
/> | ||
</EmptyState> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.