UNPKG

react-native-my-first-lib

Version:

## Getting started

21 lines (15 loc) 349 B
import React, {Component} from 'react'; import {Text} from 'react-native'; type Props = { banana: string }; export default class HelloWorldApp extends Component<Props> { static defaultProps = { banana: "default text banana", }; render() { return ( <Text>{this.props.banana}</Text> ); } }