When I use require the import works correctly:
let dgram = require('react-native-udp')
But when I try to use the same as import:
import dgram from 'react-native-udp'
I get error: Cannot read property 'createsocket' of undefined
When I look inside its dir in node_modules this is what I get:
I also tried:
import {dgram} from 'react-native-udp'
But get same error
Try :
import * as dgram from 'react-native-udp'