Home.tsx 180 B

123456789101112
  1. import AIChatComponent from "../chat/AiChat";
  2. const Widget = () => {
  3. return (
  4. <div>
  5. <h1>Home</h1>
  6. <AIChatComponent />
  7. </div>
  8. );
  9. };
  10. export default Widget;