Move JSX types to `tsx` namespace by agubler · Pull Request #818 · dojo/framework
Type: feature
The following has been addressed in the PR:
- There is a related issue
- All code has been formatted with
prettieras per the readme code style guidelines - Unit or Functional tests are included in the PR
Description:
Moves the JSX typings to the tsx function namespace and avoid clashes on the global namespace, this enables using Dojo with TSX with other frameworks that support TSX. Technically this is not a breaking change as the tsx function always needs to be imported as import { tsx } from '@dojo/framework/core/vdom';
Resolves #46