forked from dbroqua/MusicTopus
init env
This commit is contained in:
parent
6debd00e77
commit
e495e11198
9 changed files with 178 additions and 0 deletions
11
src/routes/index.js
Normal file
11
src/routes/index.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
import express from 'express';
|
||||
|
||||
// eslint-disable-next-line new-cap
|
||||
const router = express.Router();
|
||||
|
||||
/* GET home page. */
|
||||
router.get('/', function(req, res, next) {
|
||||
res.render('index', {title: 'World'});
|
||||
});
|
||||
|
||||
export default router;
|
Loading…
Add table
Add a link
Reference in a new issue