Fix expected output for TSX

This commit is contained in:
Steven Zeck 2018-02-06 13:54:44 -06:00
parent 6c38d3df3f
commit ea33618124
1 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
class Test extends React.Component<Foo> { class Test extends React.Component<Foo> {
render() { render() {
return ( return (
<div className= "class" > <div className="class">
<h2 className="anotherClass" > <h2 className="anotherClass">
{ this.foo.bar } {this.foo.bar}
< /h2> </h2>
{ this.foo.bar.children } {this.foo.bar.children}
</div> </div>
); );
} }
} }