lifetracker/apps/web/components/dashboard/sidebar/AllLists.tsx

17 lines
369 B
TypeScript

"use client";
import { useCallback } from "react";
import Link from "next/link";
import { usePathname } from "next/navigation";
export default function AllLists({ }: {}) {
return (
<ul className="max-h-full gap-y-2 overflow-auto text-sm font-medium">
<li className="flex justify-between pb-2 font-bold">
<p>Lists</p>
</li>
</ul>
);
}