``` import def, * as C from '../context' ``` is just ``` const C = def = require('../context'); ``` is has to be ``` const def = require('../context'); const C = { ...def }; ``` so the C cannot be a function it must be an object.