Project parameters edition

This commit is contained in:
2020-04-21 20:45:47 +02:00
parent 69867b113f
commit b0339d2ce0
15 changed files with 327 additions and 22 deletions

View File

@ -8,6 +8,7 @@ import { useLocalStorage } from "../../hooks/use-local-storage";
import EditableText from "../../components/editable-text";
import Tabs from "../../components/tabs";
import EstimationTab from "./estimation-tab";
import ParamsTab from "./params-tab";
export interface ProjectProps {
projectId: string
@ -44,7 +45,7 @@ const Project: FunctionalComponent<ProjectProps> = ({ projectId }) => {
{
label: 'Paramètres',
icon: '⚙️',
render: () => null
render: () => <ParamsTab project={project} dispatch={dispatch} />
},
{
label: 'Exporter',