BETTERZON-29: Reformatting Backend Code

This commit is contained in:
Patrick Müller 2020-11-13 19:10:59 +01:00
parent acdcf1b509
commit 1c9387a496
4 changed files with 50 additions and 48 deletions

View File

@ -3,7 +3,9 @@ var router = express.Router();
/* GET home page. */
router.get('/', function (req, res, next) {
res.render('index', { title: 'Express' });
res.render('index', {
title: 'Express'
});
});
module.exports = router;