A simple date picker component built with Svelte 5 for a YouTube tutorial.
npm install
npm run dev
http://localhost:5173<script>
import DatePicker from "./DatePicker.svelte";
let selectedDate = $state(new Date());
</script>
<DatePicker bind:selectedDate />