diff options
Diffstat (limited to 'cli/tests/jsx_import_from_ts.App.jsx')
-rw-r--r-- | cli/tests/jsx_import_from_ts.App.jsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cli/tests/jsx_import_from_ts.App.jsx b/cli/tests/jsx_import_from_ts.App.jsx index 6ea58436b..649230613 100644 --- a/cli/tests/jsx_import_from_ts.App.jsx +++ b/cli/tests/jsx_import_from_ts.App.jsx @@ -1,11 +1,11 @@ const React = { - createElement() {} -} + createElement() {}, +}; export default function app() { - return ( - <div> - <h2>asdf</h2> - </div> - ); -}
\ No newline at end of file + return ( + <div> + <h2>asdf</h2> + </div> + ); +} |