File size: 284 Bytes
0d3686b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /**
* @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>
);
}
|