This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date/Time: 2020-12-05 10:14:19.915 -0800 | |
End time: 2020-12-05 10:16:44.749 -0800 | |
OS Version: macOS 11.0.1 (Build 20B29) | |
Architecture: x86_64h | |
Report Version: 32 | |
Data Source: Stackshots | |
Shared Cache: 9F6FFF1F-4096-355B-B037-8DCE73A7AA42 slid base address 0x7fff2002b000, slide 0x2b000 | |
Command: 1Password 7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { accessor } from 'react-big-calendar/lib/utils/accessors'; | |
import { accessor as accessorPropType } from 'react-big-calendar/lib/utils/propTypes'; | |
import { noop } from 'lodash'; | |
import { zonedToLocal, localToZoned } from '/client/utils/timezones'; | |
import { hasTime, shiftDate, shiftHour } from '/client/utils/date'; | |
/** | |
* withTimeZone - HOC to add time zone support to react-big-calendar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import BigCalendar from 'react-big-calendar'; | |
class BigCalendarTimeslotsTest extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { timeslots: 2 }; | |
} | |
render() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import BigCalendar from 'react-big-calendar'; | |
class BigCalendarTimeslotsTest extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { timeslots: 2 }; | |
} | |
render() { |