tabby/ee/tabby-ui/app/(dashboard)/cluster/page.tsx

12 lines
216 B
TypeScript

import { Metadata } from 'next'
import ClusterInfo from './components/cluster'
export const metadata: Metadata = {
title: 'Cluster Information'
}
export default function IndexPage() {
return <ClusterInfo />
}