Skip to content

Instantly share code, notes, and snippets.

View jubayer-webdev's full-sized avatar
🎯
Focusing

Md Jubayer Hossen Jame jubayer-webdev

🎯
Focusing
View GitHub Profile
// 10 August 2024
import {
Combobox,
ComboboxInput,
ComboboxOption,
ComboboxOptions,
Field,
Label,
} from "@headlessui/react";
@nimone
nimone / Sidebar.jsx
Created June 29, 2023 09:33
Retractable Sidebar Component purely in ReactJS and TailwindCSS
import { MoreVertical, ChevronLast, ChevronFirst } from "lucide-react"
import { useContext, createContext, useState } from "react"
const SidebarContext = createContext()
export default function Sidebar({ children }) {
const [expanded, setExpanded] = useState(true)
return (
<aside className="h-screen">