I tried setting up React Native with Storybook and when importing a .tsx
component I was receiving an error:
React is not defined
What fixed it for me was, in my .tsx component, change:
import React from "react";
to:
import * as React from "react";