How to use the react-big-calendar.Views.WEEK function in react-big-calendar

To help you get started, we’ve selected a few react-big-calendar examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github intljusticemission / react-big-calendar / examples / demos / customView.js View on Github external
let CustomView = ({ localizer }) => (
  
    
      <strong>The Calendar below implments a custom 3-day week view</strong>
    
    
  
)
github intljusticemission / react-big-calendar / examples / demos / selectable.js View on Github external
render() {
    const { localizer } = this.props
    return (
      &lt;&gt;
        
          <strong>
            Click an event to see more info, or drag the mouse over the calendar
            to select a date/time range.
          </strong>
        
         alert(event.title)}
          onSelectSlot={this.handleSelect}
        /&gt;
      
    )
  }
}