selectEngins

This commit is contained in:
Rochas
2025-12-13 12:31:32 +01:00
parent 91fe9f849b
commit dc02896fdd
3 changed files with 177 additions and 5 deletions

View File

@@ -18,11 +18,8 @@ type Props = {
export default function SelectChafChantier({style,sendChefChantier , ...otherProps }: Props) {
const { chantier, setChantier} = useChantier();
const [chefDeChantier, setChefDeChantier] = useState<User>();
const [tempStatus, setTempStatus] = useState("");
const [isOpen,setIsOpen] = useState(false);
const [openConfirmation,setOpenConfirmation] = useState(false);
const [users,setUsers] = useState<User[]>([]);
const AnimatedThemedView = Animated.createAnimatedComponent(ThemedView);