@babel/plugin-proposal-class-properties not being picked up when compiling
问题 I am trying to incorporate React Native Calendars into my React webapp. I have run npm install --save react-native-calendars and then added the Calendar component to a page (this is then rendered by App.js ) import React from 'react'; import {Calendar} from 'react-native-calendars'; class CalendarPage extends React.Component{ render(){ return ( <div> <h1>This is the calendar</h1> <Calendar /> </div> ) } } export default CalendarPage; When I run npm start (or save the file when the server is