p5.js-web-editor/client/modules/IDE/components/TextOutput.js

45 lines
931 B
JavaScript
Raw Normal View History

2016-08-16 00:06:09 +02:00
import React from 'react';
2016-08-15 18:12:25 +02:00
class TextOutput extends React.Component {
componentDidMount() {
}
render() {
return (
2016-08-16 00:06:09 +02:00
<section
2016-08-16 02:28:18 +02:00
className="text-output"
2016-08-16 00:06:09 +02:00
id="canvas-sub"
tabIndex="0"
role="main"
aria-label="text-output"
title="canvas text output"
>
2016-08-15 18:12:25 +02:00
<section id="textOutput-content">
</section>
2016-08-16 00:06:09 +02:00
<p
tabIndex="0"
role="main"
id="textOutput-content-summary"
aria-label="text output summary"
>
</p>
<p
tabIndex="0"
role="main"
id="textOutput-content-details"
aria-label="text output summary details"
>
</p>
<table
id="textOutput-content-table"
summary="text output object details"
title="output details"
>
2016-08-15 18:12:25 +02:00
</table>
2016-08-16 00:06:09 +02:00
</section>
2016-08-15 18:12:25 +02:00
);
}
}
export default TextOutput;