19 lines
491 B
TypeScript
19 lines
491 B
TypeScript
![]() |
import * as React from "react";
|
||
|
import { SelectProjectScreenPath } from "../../select_project/presentation/select_project";
|
||
|
import { Header } from "../../../core/ui/header/header";
|
||
|
|
||
|
export const AllProjectScreenPath = "/";
|
||
|
|
||
|
export const AllProjectScreen: React.FunctionComponent = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<Header
|
||
|
path={SelectProjectScreenPath}
|
||
|
largeText={"All Projects"}
|
||
|
minText={"create new pipiline?"}
|
||
|
needBackButton={true}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
};
|