So while I was making my react native app, I tried to use an API from https://github.com/uport-project/react-native-uport-connect and there is a syntax that I've yet to understand.
May I know what does const { uport, MNID } mean from this code
import configureUportConnect from 'react-native-uport-connect'
const { uport, MNID } = configureUportConnect({ 
  appName: 'uPort Demo', 
  appAddress: '2oeXufHGDpU51bfKBsZDdu7Je9weJ3r7sVG', 
  privateKey:'<PRIVATE_KEY>', 
})
Im quite new to this and this code is placed on a seperate js file and im trying to export const { uport, MNID } so I could use it in my Components and im not sure if it's a variable, object or some js syntax. Thank you!