import React from 'react'; import { KeyboardAvoidingView, Modal, Platform, Pressable, ScrollView, Text, TextInput, View } from 'react-native'; import { styles } from '../styles'; export default function BackupModal({ visible, onClose, exportJson, importJson, setImportJson, applyImport, }) { return ( Backup & Restore Close Export JSON Copy this JSON and store it safely. Import JSON Paste a previous backup. This will replace current data. Import & Replace ); }