import { api } from "@/server/api/client"; import AllListsView from "./components/AllListsView"; export default async function ListsPage() { const lists = await api.lists.list(); return (

📋 All Lists


); }