React Native Storybook + Typescript - React 未定义
React Native Storybook + Typescript - React is not defined
我尝试使用 Storybook 设置 React Native,但在导入 .tsx
组件时收到错误消息:
React is not defined
为我修复的是,在我的 .tsx 组件中,更改:
import React from "react";
至:
import * as React from "react";
我尝试使用 Storybook 设置 React Native,但在导入 .tsx
组件时收到错误消息:
React is not defined
为我修复的是,在我的 .tsx 组件中,更改:
import React from "react";
至:
import * as React from "react";