Fix expected output for TSX
This commit is contained in:
parent
6c38d3df3f
commit
ea33618124
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue