1.0.1 • Published 6 years ago
@neoaren/time-picker v1.0.1
Time Picker
⏰ A modern and easy-to-use React time picker component
Install
Install the time picker
npm install --save @neoaren/time-pickerPeer dependencies
This component uses React >=16.8.0 and React DOM >=16.8.0 as peer dependencies.
Install them using npm
npm install --save react react-domUsage
import React from 'react';
import TimePicker from '@neoaren/time-picker';
const App = () => {
return (
<TimePicker id="my-timepicker" />
);
};Component API
| Name | Type | Required | Description |
|---|---|---|---|
| id | String | true | The unique identifier of the time-picker element. |
| defaultValue | Number Date | false | The default value of the time-picker. |
| onChange | Function | false | This function runs when the selected time changes. The only parameter to be passed is an object containing the selected time in different formats. |
| placeholder | String | false | The text to be displayed when no time is selected. |
License
MIT © NeoAren