CoolFace
Apppublic

SFM2001/spititout

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
App.tsx16 linesDownload Raw Back to src
1/**2 * @license3 * SPDX-License-Identifier: Apache-2.04 */5 6import React from "react";7import Chat from "./components/Chat";8 9export default function App() {10  return (11    <div className="min-h-screen bg-black text-white selection:bg-orange-500/30">12      <Chat />13    </div>14  );15}16