/** * Copyright 2004-present Facebook. All Rights Reserved. * * @providesModule UIExplorerTitle */ 'use strict'; var React = require('react-native'); var { StyleSheet, Text, View, } = React; var UIExplorerTitle = React.createClass({ render: function() { return ( {this.props.title} ); } }); var styles = StyleSheet.create({ container: { borderRadius: 4, borderWidth: 0.5, borderColor: '#d6d7da', margin: 10, height: 45, padding: 10, backgroundColor: 'white', }, text: { fontSize: 19, fontWeight: 'bold', }, }); module.exports = UIExplorerTitle;