``` handlePage = (target, req, res) => { ``` should've been ``` const handlePage = (target, req, res) => { ``` Otherwise you'll get an error that handlePage is undefined :)
should've been
const handlePage = (target, req, res) => {Otherwise you'll get an error that handlePage is undefined :)