When running the R3F example it gets the following error where EditorPanel is not exported. What would be the proper way to fix this?
example:dev: X [ERROR] No matching export in "../../packages/editor/src/fiber/index.ts" for import "EditorPanel"
example:dev:
example:dev: src/demos/Gestures.tsx:5:2:
example:dev: 5 │ EditorPanel,
example:dev: ╵ ~~~~~~~~~~~
example:dev:
example:dev: X [ERROR] No matching export in "../../packages/editor/src/fiber/index.ts" for import "EditorPanel"
example:dev:
example:dev: src/demos/Gltf.tsx:2:27:
example:dev: 2 │ import { Canvas, editable, EditorPanel } from "@react-three/editor/...
example:dev: ╵ ~~~~~~~~~~~
example:dev:
example:dev: X [ERROR] No matching export in "../../packages/editor/src/fiber/index.ts" for import "EditorPanel"
example:dev:
example:dev: src/demos/Pointcloud.tsx:3:27:
example:dev: 3 │ import { Canvas, editable, EditorPanel } from "@react-three/editor/...
example:dev: ╵ ~~~~~~~~~~~
example:dev:
example:dev: Build failed with 3 errors:
example:dev: src/demos/Gestures.tsx:5:2: ERROR: No matching export in "../../packages/editor/src/fiber/index.ts" for import "EditorPanel"
example:dev: src/demos/Gltf.tsx:2:27: ERROR: No matching export in "../../packages/editor/src/fiber/index.ts" for import "EditorPanel"
example:dev: src/demos/Pointcloud.tsx:3:27: ERROR: No matching export in "../../packages/editor/src/fiber/index.ts" for import "EditorPanel"
When running the R3F example it gets the following error where
EditorPanel
is not exported. What would be the proper way to fix this?