react-weekdays-picker

Week day picker for React

Usage no npm install needed!

<script type="module">
  import reactWeekdaysPicker from 'https://cdn.skypack.dev/react-weekdays-picker';
</script>

README

react-weekdays-picker

React component that allow selecting week per year

Demo

Features

Installation

Install using Yarn:

yarn add @fozg/react-weekdays-picker

or NPM:

npm install npm i @fozg/react-weekdays-picker --save

Usage

import WeekDayPicker from 'react-weekdays-picker'

function Page() {
  return (
    <WeekDayPicker onDateChanged={(date: Date) => {...}} />
  )
}