import { RecentGroupList } from '@/app/groups/recent-group-list' import { Button } from '@/components/ui/button' import { getGroups } from '@/lib/api' import { Plus } from 'lucide-react' import { Metadata } from 'next' import Link from 'next/link' export const metadata: Metadata = { title: 'Recently visited groups', } export default async function GroupsPage() { async function getGroupsAction(groupIds: string[]) { 'use server' return getGroups(groupIds) } return (

Recently visited groups

) }