react-native-cn-richtext-editor
Version:
RichText Editor for React-Native
33 lines (24 loc) • 588 B
JavaScript
import React, { Component } from 'react';
import { Text, StyleSheet } from 'react-native';
import _ from 'lodash';
class CNStyledText extends Component {
constructor(props) {
super(props);
}
shouldComponentUpdate(nextProps) {
if (_.isEqual(this.props.text, nextProps.text)
&& _.isEqual(this.props.style, nextProps.style)
) {
return false;
}
return true;
}
render() {
return (
<Text style={this.props.style}>
{this.props.text}
</Text>
);
}
}
export default CNStyledText;