feat: pipeline-task details
This commit is contained in:
11
src/commons/fallbacks/error-page.tsx
Normal file
11
src/commons/fallbacks/error-page.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import { Typography } from '@material-ui/core';
|
||||
import React, { FC } from 'react';
|
||||
|
||||
export const ErrorPage: FC = ({children}) => {
|
||||
return (
|
||||
<section>
|
||||
<Typography component="h2">Something is wrong :(</Typography>
|
||||
<Typography variant="body1" component="div">{children}</Typography>
|
||||
</section>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user