-
Notifications
You must be signed in to change notification settings - Fork 50.5k
Closed
Labels
Description
I've experimented with international symbols inside react component and it failed on simple example. Is it by design behaviour?
var HelloWorld = React.createClass({
render: function() {
return (
<p>
的なことは, <input type="text" placeholder="Введите ваше имя" />!
Время: {this.props.date.toTimeString()}
</p>
);
}
});
setInterval(function() {
React.render(
<HelloWorld date={new Date()} />,
document.getElementById('example')
);
}, 500);And get
Despite that on JSFiddle it works like charm
I've tried this on OS X with sublime and webstorm. Both work like on image.
