Reduce re-renderings when changing view modes

This commit is contained in:
Torkel Ödegaard
2018-10-27 16:54:04 +02:00
parent 10e5d725bc
commit c5f9d8092f
2 changed files with 11 additions and 7 deletions

View File

@@ -36,7 +36,11 @@ export class Graph2 extends PureComponent<Props> {
export class TextOptions extends PureComponent<any> {
render() {
return <p>Text2 Options component</p>;
return (
<div className="section gf-form-group">
<h5 className="section-heading">Draw Modes</h5>
</div>
);
}
}