Search code examples
typescriptreact-nativestorybook

React Native Storybook + Typescript - React is not defined


I tried setting up React Native with Storybook and when importing a .tsx component I was receiving an error:
React is not defined


Solution

  • What fixed it for me was, in my .tsx component, change:
    import React from "react";

    to:

    import * as React from "react";