Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 Storybook 设置 React Native,并且在导入.tsx组件时收到错误消息: React is not defined
.tsx
React is not defined
为我解决的问题是,在我的 .tsx 组件中,更改: import React from "react";
import React from "react";
到:
import * as React from "react";