2023-11-10 12:06:40 +03:00
|
|
|
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}
|
2023-11-14 20:44:06 +03:00
|
|
|
largeText={"Projects"}
|
|
|
|
minText={"select instance project?"}
|
2023-11-10 12:06:40 +03:00
|
|
|
needBackButton={true}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|