React Code Help - "Component Is Not An Object"

import React, {component} from ‘react’;

import Cardlist from ‘./Cardlist’;

import SearchBox from ‘./SearchBox’;

import {robots} from ‘./robots’;

class App extends component{

constructor () {

  super()

  this.state = {

    robots: robots,

    searchfield: ''  

  }

}

render(){

    return (

        <div className = 'tc'>

        <h1>RoboFriends</h1>

        <SearchBox/>

        <Cardlist  robots = {this.state.robots}/>

         </div>

    );

}  

}

export default App;

and am getting this error;
TypeError: class heritage react__WEBPACK_IMPORTED_MODULE_0__.component is not an object or null

Hey @shadrach4,

Can you try this?

class App extends React.Component {
1 Like

thank u so much u helped me