menu
menu copied to clipboard
react import breaks typescript compilation
reference https://github.com/ant-design/ant-design/issues/19276.
the line:
import React from 'react';
should be
import * as React from 'react';
Maybe you can try flag esModuleInterop in tsconfig and you can import CommonJS modules in compliance with es6 modules.