Currently, typescript throws ['React' refers to a UMD global, but the current file is a module](https://stackoverflow.com/questions/64656055/react-refers-to-a-umd-global-but-the-current-file-is-a-module) error without `import React from 'react';` Consider updating `tsconfig.json` to react-jsx ``` "compilerOptions": { ... "jsx": "react-jsx", ... } ```