Fix expected output for TSX
This commit is contained in:
parent
6c38d3df3f
commit
ea33618124
|
@ -1,12 +1,12 @@
|
|||
class Test extends React.Component<Foo> {
|
||||
render() {
|
||||
return (
|
||||
<div className= "class" >
|
||||
<h2 className="anotherClass" >
|
||||
{ this.foo.bar }
|
||||
< /h2>
|
||||
{ this.foo.bar.children }
|
||||
</div>
|
||||
<div className="class">
|
||||
<h2 className="anotherClass">
|
||||
{this.foo.bar}
|
||||
</h2>
|
||||
{this.foo.bar.children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue