react-toolbox/components/date_picker
Javi Velasco 5fc135961b Improve pickers 2015-11-11 01:29:42 +01:00
..
calendar Fix some errors and change opinionated eslint 2015-10-23 18:30:37 +02:00
_config.scss Reorder properties for datepicker 2015-10-21 01:51:24 +02:00
dialog.jsx Minor changes 2015-11-10 21:07:40 +07:00
index.jsx Improve pickers 2015-11-11 01:29:42 +01:00
readme.md change documentation 2015-11-10 21:27:03 +07:00
style.scss Reorder properties for datepicker 2015-10-21 01:51:24 +02:00

readme.md

Date Picker

A dialog date picker is used to select a single date. The selected day is indicated by a filled circle. The current day is indicated by a different color and type weight.

import DatePicker from 'react-toolbox/date_picker';

const selectedDate = new Date(1995, 11, 17);
const DatePickerTest = () => (
  <DatePicker value={selectedDate} />
);

Properties

Name Type Default Description
className String '' Sets a class to give customized styles to the time picker.
onChange Function Callback called when the picker value is changed.
value Date Date object with the currently selected date.