feat(projects, pipeline): project detail page.

This commit is contained in:
Ivan Li
2021-05-05 11:21:48 +08:00
parent ebc3d3a3aa
commit 93482bec3f
11 changed files with 248 additions and 104 deletions

View File

@@ -0,0 +1,7 @@
import { createContext, useContext } from 'react';
const Context = createContext<HTMLElement| undefined>(undefined);
export const HeaderContainerProvider = Context.Provider;
export const useHeaderContainer = () => useContext(Context);