import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { COLORS, FONTS } from '../constants/theme'; interface HeaderProps { title: string; } export const Header: React.FC = ({ title }) => { return ( {title} ); }; const styles = StyleSheet.create({ container: { backgroundColor: COLORS.primary, padding: 20, paddingTop: 50, alignItems: 'center', }, title: { fontSize: FONTS.large, fontWeight: 'bold', color: COLORS.card, }, });