aboutsummaryrefslogtreecommitdiff
path: root/src/debug/Test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/Test.tsx')
-rw-r--r--src/debug/Test.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/debug/Test.tsx b/src/debug/Test.tsx
index c8de33f41..11f2b0c4e 100644
--- a/src/debug/Test.tsx
+++ b/src/debug/Test.tsx
@@ -1,10 +1,10 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom';
-import JsxParser from 'react-jsx-parser'
+import JsxParser from 'react-jsx-parser';
class Hello extends React.Component<{ firstName: string, lastName: string }> {
render() {
- return <div>Hello {this.props.firstName} {this.props.lastName}</div>
+ return <div>Hello {this.props.firstName} {this.props.lastName}</div>;
}
}
@@ -16,8 +16,8 @@ class Test extends React.Component {
firstName: "First",
lastName: "Last"
}
- }
- return <JsxParser jsx={jsx} bindings={bindings} components={{ Hello }}></JsxParser>
+ };
+ return <JsxParser jsx={jsx} bindings={bindings} components={{ Hello }}></JsxParser>;
}
}