在打字稿中反应懒惰

Are*_*eff 2 typescript reactjs react-16

我刚刚将我的create-react-app更新到版本2.1.1,它增加了对typescript的支持(检查出来).

通过命令npx create-react-app my-app --typescript,可以默认创建一个带有typescript的react应用程序,但是添加了lazy

import React, { Component, lazy} from 'react';
Run Code Online (Sandbox Code Playgroud)

导致此错误

Type error: Module '".../node_modules/@types/react/index"' 
has no exported member 'lazy'.  TS2305
Run Code Online (Sandbox Code Playgroud)

可能我在这里遗漏了一些东西

谢谢

小智 5

长话短说,你需要等待来自@ types/react维护者的支持.

有相应问题的链接 - 这里这里.