spititout / src /App.tsx
MSF
feat: Initialize Venting Partner app with AI Studio
0d3686b
raw
history blame contribute delete
284 Bytes
/**
* @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>
);
}