11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
|
|
import { VoiceBotsList } from "./_components/VoiceBotsList";
|
||
|
|
import { db } from "@/app/_lib/database";
|
||
|
|
|
||
|
|
export const dynamic = "force-dynamic";
|
||
|
|
|
||
|
|
export default async function Page() {
|
||
|
|
const rows = await db.selectFrom("VoiceLine").selectAll().execute();
|
||
|
|
|
||
|
|
return <VoiceBotsList rows={rows} />;
|
||
|
|
}
|