Describe the bug
After upgrading react-native-react-bridge 0.12.0 and react-native 0.74, this library does not working like before.
To Reproduce
With a simple code snippet like the following, the App still reports the error "Property 'name' doesn't exist". Previous versions of react-native still worked normally.
import React from 'react';
import {webViewRender} from 'react-native-react-bridge/lib/web';
const Root = () => {
const name = 'Peter';
return <div>{`Hello ${name}`}</div>;
};
Describe the bug After upgrading react-native-react-bridge 0.12.0 and react-native 0.74, this library does not working like before.
To Reproduce With a simple code snippet like the following, the App still reports the error "Property 'name' doesn't exist". Previous versions of react-native still worked normally.
export default webViewRender( );
Expected behavior The app render "Hello Peter"
Platform:
Additional context No