import React from 'react'; import { Text, View, StyleSheet } from 'react-native'; import { learnihonColors } from '../assets/colors'; import { SafeAreaView } from 'react-native-safe-area-context'; const Header = () => { return ( LEARNIHON ); }; const headerStyle = StyleSheet.create({ container: { backgroundColor: learnihonColors.main, width: '100%', }, title: { color: 'white', textAlign: 'center', fontWeight: 'bold', fontSize: 40, } }) export default Header;