modsen-datepicker-by-vlad-k
v0.0.11
Published
datepicker for React app
Downloads
3
Readme
Simple and small DatePicker
(possibly with bugs 🐞)
it is a preview:
it is some example:
import { DatePicker } from 'modsen-datepicker-by-vlad-k';
import React, { useState } from 'react';
function ExamplePage() {
const [value, setValue] = useState<Date | null>(null);
return (
<section>
<DatePicker singleValue={value} onSingleChange={(e) => setValue(e)} />
</section>
);
}
export { ExamplePage };
p.s. oh yeah, it's for React