| /** | |
| * @license | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| import React from "react"; | |
| import Chat from "./components/Chat"; | |
| export default function App() { | |
| return ( | |
| <div className="min-h-screen bg-black text-white selection:bg-orange-500/30"> | |
| <Chat /> | |
| </div> | |
| ); | |
| } | |