import { View, Text } from "react-native"; import React from "react"; import AppActionSheet from "../AppActionSheet"; import { Palette } from "../../styles"; import { FONT_FAMILY } from "../../styles/Fonts"; import BlurItemButton from "../BlurItemButton"; import { SheetManager } from "react-native-actions-sheet"; import { navigate } from "../../navigation/NavigationService"; import { Routes } from "../../navigation"; const ProfileSettingsModal = () => { const onClose = async () => { await SheetManager.hide("ProfileSettings"); }; return ( Paramètres { onClose(); navigate(Routes.EditProfile); }} /> { onClose(); navigate(Routes.Settings); }} /> ); }; export default ProfileSettingsModal;