//React js throws This error, when either we forget to include React in our script
or make a spelling mistake.
//Wrong way
import react from 'react'
//Correct way
import React from 'react'
Must include "React" in the import line, see line 2.
Import React, { Component } from "react";