tabby/ee/tabby-ui/app/playground/page.tsx

11 lines
192 B
TypeScript

import { Metadata } from 'next'
import Chats from './components/chats'
export const metadata: Metadata = {
title: 'Playground'
}
export default function IndexPage() {
return <Chats />
}