import React from 'react'; import { StyleSheet, Text, View, StyleProp, ViewStyle } from 'react-native'; export default class HeadingText extends React.Component<{ style?: StyleProp }> { render() { return ( {this.props.children} ); } } const styles = StyleSheet.create({ container: { marginTop: 16, }, headingText: { fontWeight: 'bold', fontSize: 18, }, });