2017-05-31 21:23:30 +02:00
|
|
|
import React from 'react';
|
2016-08-15 18:12:25 +02:00
|
|
|
|
|
|
|
class TextOutput extends React.Component {
|
|
|
|
componentDidMount() {
|
2017-05-31 21:23:30 +02:00
|
|
|
this.TextOutputModal.focus();
|
2017-03-06 21:58:36 +01:00
|
|
|
}
|
2016-08-15 18:12:25 +02:00
|
|
|
render() {
|
|
|
|
return (
|
2016-08-16 00:06:09 +02:00
|
|
|
<section
|
2017-05-31 21:23:30 +02:00
|
|
|
id="textOutput-content"
|
|
|
|
ref={(element) => { this.TextOutputModal = element; }}
|
2016-08-16 00:06:09 +02:00
|
|
|
>
|
2017-05-31 21:23:30 +02:00
|
|
|
<h2> Text Output </h2>
|
2016-08-16 00:06:09 +02:00
|
|
|
<p
|
|
|
|
tabIndex="0"
|
2016-08-24 19:10:06 +02:00
|
|
|
role="main"
|
2016-08-16 00:06:09 +02:00
|
|
|
id="textOutput-content-summary"
|
|
|
|
aria-label="text output summary"
|
|
|
|
>
|
|
|
|
</p>
|
2016-08-16 03:09:47 +02:00
|
|
|
<table
|
2016-11-12 17:53:02 +01:00
|
|
|
id="textOutput-content-table"
|
2017-05-31 21:23:30 +02:00
|
|
|
summary="text output details"
|
2016-08-16 00:06:09 +02:00
|
|
|
>
|
2016-08-15 18:12:25 +02:00
|
|
|
</table>
|
2016-11-12 17:53:02 +01:00
|
|
|
<div
|
|
|
|
tabIndex="0"
|
|
|
|
role="main"
|
|
|
|
id="textOutput-content-details"
|
|
|
|
aria-label="text output details"
|
|
|
|
>
|
|
|
|
</div>
|
2016-08-16 00:06:09 +02:00
|
|
|
</section>
|
2016-08-15 18:12:25 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TextOutput;
|