1.0.5 • Published 6 months ago

rci-datepicker v1.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

rci-datepicker

Minimal requirements

This library requires node.js >= 13.2.0 and React >= 16.8.0

Get started

Install the component via npm.

npm install rci-datepicker

Import the component in your project

import DatePicker from "rci-date-picker";

Use it like an input by using onChange() on it.

function Component() {
  const [selectedDate, setSelectedDate] = useState(null);

  return (
    <div>
      <h1>Date Picker Example</h1>
      <DatePicker onChange={(e) => setSelectedDate(e.target.value)} />
      <p>Selected Date: {selectedDate}</p>
    </div>
  );
}
1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

7 months ago

1.0.0

7 months ago