Why is Component not defined

前端 未结 3 1837
梦毁少年i
梦毁少年i 2021-01-15 13:34

I am creating a postcard application. To utilize the webcam I am using webkitURL which is available on the window object and building the app using

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-15 14:35

    Replace this

    import React from 'react';
    import ReactDOM from 'react-dom';
    

    into

    import React, { Component } from 'react';
    

提交回复
热议问题