Unable to resolve module ./ Libraries/Components/DatePicker/
davevilela opened this issue · 1 comments
davevilela commented
Describe the bug
I'm getting this generic error when something goes wrong
To Reproduce
import React from "react";
import { webViewRender } from "react-native-react-bridge/lib/web";
import { Plate } from "@udecode/plate-headless";
const defaultValue = [
{
type: "p",
children: [
{
text: "HELLO WORLD",
},
],
},
];
function Editor() {
return (
<Plate
initialValue={defaultValue}
editableProps={{
spellCheck: false,
autoFocus: false,
placeholder: "Write something...",
}}
/>
);
}
export default webViewRender(<Editor />);
Expected behavior
Expected to get a clear description of the error
Platform:
- OS: iOS, Android
- Running on: iOS 15.6 Simulator
- Version of this package: ^0.10.1
Additional context
Add any other context about the problem here.