import React, { FunctionComponent, useState } from 'react'; import { Page } from '../Page'; import { ClarificationSection } from './ClarificationSection'; import { OptionsSection } from './OptionsSection'; import { MetadataPanel } from './MetadataPanel'; import { AppendixPanel } from './AppendixPanel'; export interface DecisionSupportFilePageProps { }; export const DecisionSupportFilePage: FunctionComponent = () => { const [ state, setState ] = useState({ dsf: null }); const isNew = true; const isClosed = false; return (
{ isNew ?

Nouveau

Dossier d'Aide à la Décision

:

{state.dsf.title}

Dossier d'Aide à la Décision { isClosed ? '(clos)' : null }

}
); };