It looks like you're trying to use import/export
syntax, but in your final line, you're using module.exports. In ES modules, you should consistently use export and import throughout your code.
Export Statement: Changed module.exports = router;
to export default router;
.