import React, { Component } from 'react'; import { StyleSheet, View, } from 'react-native'; import HTMLView from 'react-native-htmlview' import htmlStyles from '../components/htmlStyles' import ScrollableContainer from '../components/scrollableContainer' import ClearText from '../components/text' export default class Privacy extends Component { constructor(props) { super() } render() { let body = '

' + this.props.content.body + '

' return ( ) } } const styles = StyleSheet.create({ body: { width: '90%', maxWidth: '650px', }, })