mirror of
https://github.com/spliit-app/spliit.git
synced 2026-03-04 12:06:11 +01:00
* Use tRPC for recent groups page * Use tRPC for adding group by URL * Use tRPC for saving visited group * Group context
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { EditGroup } from '@/app/groups/[groupId]/edit/edit-group'
|
|
import { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Settings',
|
|
}
|
|
|
|
export default async function EditGroupPage() {
|
|
return <EditGroup />
|
|
}
|