Open yarnball opened 8 years ago
Don't you need moment installed not react-moment?
I think this should be split into two different issues. I am also getting the error on line 40 where for some reason m
is returning undefined.
@wangzuo can you help with that? ths same issue with me :(
I was getting this error also while just trying to do a simple test. Once I actually set up state.moment with a moment object and defined the handleChange and handleSave methods it functioned as expected. The need for these to be defined should probably be documented.
I have same isuue in calender.js, in line 45 it says cannot read property 'date' of undefined.
I had the same issue to @JeremyIglehart and it was because I was missing the moment prop -
import moment from 'moment'
...
<InputMoment
moment={moment()} // was missing
//... other props
/>
npm install react-moment --save
npm i input-moment --save
2a. Above gives me the error:Then my code is:
This returns the error in
calendar.js
Line 40 entitled:Uncaught TypeError: Cannot read property 'date' of undefined(…)