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

21 lines
357 B
TypeScript
Raw Normal View History

import { Metadata } from 'next'
2023-12-07 07:09:23 +00:00
import { Header } from '@/components/header'
import Chats from './components/chats'
export const metadata: Metadata = {
title: 'Playground'
}
export default function IndexPage() {
2023-12-07 07:09:23 +00:00
return (
<>
<Header />
<main className="flex flex-1 flex-col bg-muted/50">
2023-12-07 07:09:23 +00:00
<Chats />
</main>
</>
)
}