import { useState } from "react"; import { Text } from "react-native"; import { View } from "react-native-reanimated/lib/typescript/Animated"; export const BlockNoteView = (text : string) => { const [_text, _setText] = useState(text); return ( {_text} ); }