2026-07-02 14:34:19 +05:30

19 lines
489 B
TypeScript

import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
import { useAppTheme } from '@theme';
const EarningsScreen: React.FC = () => {
const { colors } = useAppTheme();
return (
<View style={[styles.container, { backgroundColor: colors.background }]}>
<Text>Earnings Screen</Text>
</View>
);
};
const styles = StyleSheet.create({
container: { flex: 1, justifyContent: 'center', alignItems: 'center' },
});
export default EarningsScreen;