feat: notify apollo error on screen.

This commit is contained in:
Ivan Li
2021-05-09 16:42:19 +08:00
parent dbb81fa952
commit c88e9e6785
8 changed files with 180 additions and 66 deletions

View File

@@ -0,0 +1,9 @@
import { FC } from 'react'
interface Props {
taskId: string;
}
export const PipelineTaskDetail: FC<Props> = ({taskId}) => {
return <div>{taskId} detail</div>
}