Response.js emojis on chrome fails

The rendering function from the responsive component will not display emoji in Chrome on Mac. It works with Safari. The input field also works. Here is the render function. Umlauts works great.

render() {
    return (
        <div style={{ width: '100%', height: '100%', backgroundColor: 'gray'}} onClick={this.tryConnectAsTarget}>
            This is a test with emoji and german umlauts Γ€ ΓΌ ΓΆ ß πŸ™‚
        </div>
    );
}
+4
source share

All Articles