Export namespace should be first transformed by `@babel/plugin-proposal-export-namespace-from`
You have to add the ‘react-native-reanimated/plugin’ to the plugins array. make sure this Plugin should be the last. open the babel.config.js in the root of your project and modify it as follow: module.exports = { presets: [‘module:metro-react-native-babel-preset’], plugins: [ … ‘react-native-reanimated/plugin’, // This line. ], }; NOTE: After adding the react-native-reanimated/plugin to your project you … Read more