Advertisement
Guest User

flatpickr

a guest
Sep 25th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <div className="grid-x grid-margin-x large-12 medium-12 small-12">
  2. <div className="large-4 medium-4 small-5 cell">
  3. <label htmlFor="right-label" className="text-right">
  4. Date
  5. </label>
  6. </div>
  7. <div className="large-8 medium-6 small-7 cell">
  8. <Flatpickr
  9. style={{ backgroundColor: 'transparent' }}
  10. options={{ mode: 'range', minDate: 'today', dateFormat: 'j M,y', disableMobile: 'true' }}
  11. onClose={date => this.handleDate(date)}
  12. />
  13. </div>
  14. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement