import React, { Component } from 'react' import { Text } from 'react-native' import { SsDescriptionPropsType } from '../utils/PropTypes' export default class SsDescription extends Component { render() { const { initialValue } = this.props return ( {initialValue} ) } }