import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; const SavingPage: React.FC = () => { return ( Saving Page ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', }, }); export default SavingPage;