@ types / react / index \“'没有默认导出。”,

时间:2019-03-01 09:29:12

标签: javascript typescript

为了简洁起见,我正在使用最新的React,我希望在我的代码useState中使用它,而不是React.useState。

现在我有了以下代码:

import * as React from 'react'

如何更改导入方式以便可以直接获取useState

如果我使用import React, { useState } from 'react';,则会收到错误消息:

@types/react/index\"' has no default export.",

1 个答案:

答案 0 :(得分:1)

怎么样?

import * as React, { useState } from 'react'

import * as React

const useState = React.useState