Fix unit test for tsx

This commit is contained in:
Steven Zeck 2018-02-06 10:32:09 -06:00 committed by GitHub
parent e8afb23ae0
commit 7107f00beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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