You can’t mix import and module.exports. In the import world, you need to export things.
// Change this
module.exports = foo;
// To this
export default foo;
You can’t mix import and module.exports. In the import world, you need to export things.
// Change this
module.exports = foo;
// To this
export default foo;