19 lines
489 B
TypeScript
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;
|