Spaces:
Build error
Build error
Upload pages/index.js with huggingface_hub
Browse files- pages/index.js +6 -0
pages/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React from 'react';
|
| 2 |
+
import ChatInterface from '../components/ChatInterface';
|
| 3 |
+
|
| 4 |
+
export default function Home() {
|
| 5 |
+
return <ChatInterface />;
|
| 6 |
+
}
|