feat: pipeline-task details

This commit is contained in:
Ivan Li
2021-05-12 21:18:17 +08:00
parent c88e9e6785
commit 73b1c6a40d
7 changed files with 232 additions and 46 deletions

View 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>
);
}