+
Retour sur PeL 2022
+
+
+ On aimerait savoir comment s'est passé ton festival !
+ L'orga lira tes réponses et répondra à son tour à tes questions soit
+ individuellement, soit dans la prochaine gazette. Puis toutes les réponses seront
+ anonymisées et une synthèse sera diffusée dans la gazette.
+
+ Tu peux répondre par 3 mots ou 3 pages, on a tous vécu le festival différemment !
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {weekDays.length > 0 && (
+
+
+
+
+
+
+
+
+
+ )}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enregistrer
+ {children === undefined && (
+ <>
+ {" "}
+
+ Annuler
+ {" "}
+ >
+ )}
+ {children !== undefined && (
+ <>
+ {" "}
+
+ {children}
+ {" "}
+ >
+ )}
+
+
+ )
+}
+
+RetexForm.defaultProps = {
+ children: undefined,
+ afterSubmit: undefined,
+}
+
+export default memo(RetexForm)
+
+// Fetch server-side data here
+export const fetchFor = [fetchRetexSetIfNeed]
diff --git a/src/components/VolunteerBoard/RetexForm/RetexFormModal.tsx b/src/components/VolunteerBoard/RetexForm/RetexFormModal.tsx
new file mode 100644
index 0000000..6616e4d
--- /dev/null
+++ b/src/components/VolunteerBoard/RetexForm/RetexFormModal.tsx
@@ -0,0 +1,18 @@
+import { FC, memo, useCallback } from "react"
+import { hideModal, MODAL_IDS } from "../../../store/ui"
+import Modal from "../../Modal/Modal"
+import useAction from "../../../utils/useAction"
+import RetexForm from "./RetexForm"
+
+const RetexFormModal: FC = (): JSX.Element => {
+ const execHideModal = useAction(hideModal)
+ const afterFormSubmit = useCallback(() => execHideModal(), [execHideModal])
+
+ return (
+