import React from 'react'; import {Text, View, StyleSheet, ViewProps} from 'react-native'; interface CaptionScreenHeaderProps extends ViewProps { title: string; } const CaptionScreenHeader: React.FC = ({ title, style, }) => { return ( {title} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', justifyContent: 'center', alignItems: 'center', }, headerContainer: { width: '90%', }, header: { fontSize: 20, fontWeight: 'bold', color: 'white', textAlign: 'center', }, }); export default CaptionScreenHeader;