fix(web/Text): p->span

This commit is contained in:
hristoterezov
2018-09-27 01:42:59 -05:00
committed by Любомир Маринов
parent 57bf165ebd
commit 1928efda11
2 changed files with 2 additions and 1 deletions
@@ -14,6 +14,6 @@ export default class Text extends Component {
* @returns {ReactElement}
*/
render() {
return React.createElement('p', this.props);
return React.createElement('span', this.props);
}
}