前提・実現したいこと
https://crashspringfield.github.io/react-google-calendar/
このサイトを参考に、Reactでgoogleカレンダーを表示できるよう自分で試していますが、以下のようなエラーが出ました。
調べてみても有効な解決策がありません。
何かわかる方がいましたらコメントお願いします。
発生している問題・エラーメッセージ
TypeError: Cannot read property 'momentLocalizer' of undefined
該当のソースコード
import Calendar from 'react_google_calendar'; import React from 'react'; const calendar_configuration = { api_key: 'hogehoge', calendars: [ { name: 'demo', url: 'exampleURL@group.calendar.google.com' } ], dailyRecurrence: 700, weeklyRecurrence: 500, monthlyRecurrence: 20 } export default class GoogleCalendar extends React.Component { constructor(props) { super(props) this.state = { events: [] } } render = () => <div> <Calendar events={this.state.events} config={calendar_configuration} /> </div> }
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/30 11:29