import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View } from 'react-native'; import RichTextEditor from 'react-native-ZSSRichTextEditor' class RichTextExample extends Component { render() { return ( World

this is a new paragraph

'} />
); } } const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'column', backgroundColor: '#F5FCFF', paddingTop: 40 }, richText: { alignItems:'center', justifyContent: 'center', backgroundColor: 'transparent', }, }); AppRegistry.registerComponent('example', () => RichTextExample);