Files
calchat/app/index.tsx
2025-11-25 20:52:53 +01:00

9 lines
120 B
TypeScript

import React from "react";
import Chat from "./Chat";
export default function Index() {
return (
<Chat />
);
}