import React from 'react'; class TextOutput extends React.Component { componentDidMount() { this.canvasTextOutput.focus(); } render() { return (
{ this.canvasTextOutput = element; }} tabIndex="0" aria-label="text-output" title="canvas text output" >

Output

); } } export default TextOutput;