You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export defualt X is exports['default'] = X export defualt X is not module.exports = X import X from 'x' is const X = require('x')['default'] import X from 'x' is not const X = require('x')
export defualt X
isexports['default'] = X
export defualt X
is notmodule.exports = X
import X from 'x'
isconst X = require('x')['default']
import X from 'x'
is notconst X = require('x')
#19
The text was updated successfully, but these errors were encountered: