Found a funky one. Basically, the following code describes the issue, where the React variable becomes undefined after the await statement:
main()
async function main() {
import React from 'react'
import startup from 'awaitbox/meteor/startup'
console.log(' --- React?', React) // defined. All is fine.
await startup()
console.log(' --- React?', React) // undefined! Uh oh!
}