import { useHaptic } from "@/hooks/useHaptic"; import { useTranslation } from "react-i18next"; import { View } from "react-native"; export const StorageSettings = () => { const { t } = useTranslation(); const successHapticFeedback = useHaptic("success"); const errorHapticFeedback = useHaptic("error"); return ( {/* {t("home.settings.storage.storage_title")} {size && ( {t("home.settings.storage.size_used", { used: Number(size.total - size.remaining).bytesToReadable(), total: size.total?.bytesToReadable(), })} )} {size && ( <> )} {size && ( <> {t("home.settings.storage.app_usage", { usedSpace: calculatePercentage(size.app, size.total), })} {t("home.settings.storage.device_usage", { availableSpace: calculatePercentage( size.total - size.remaining - size.app, size.total ), })} )} */} ); };