Spaces:
Configuration error
Configuration error
zack
commited on
Commit
·
aef915f
1
Parent(s):
8db5596
feat: add new pages directory and _app.js file structure 🏗️
Browse files- frontend/pages/_app.js +10 -0
frontend/pages/_app.js
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import ReactEnviorment from './components/ReactFlow/ReactFlowEnv'
|
2 |
+
|
3 |
+
export default function App() {
|
4 |
+
return(
|
5 |
+
<>
|
6 |
+
<ReactEnviorment/>
|
7 |
+
</>
|
8 |
+
|
9 |
+
)
|
10 |
+
};
|