Skip to content Skip to sidebar Skip to footer

Typeerror: Undefined Is Not An Object 'createelement' Of Undefined - React Native

I have a LoginForm.js component import { React, Component } from 'react'; import { Button, Card, CardSection } from './common'; class LoginForm extends Component { render() {

Solution 1:

Your React import in LoginForm.js is incorrect. React should be the default import.

import React, { Component } from 'react';

Post a Comment for "Typeerror: Undefined Is Not An Object 'createelement' Of Undefined - React Native"