Initial
This commit is contained in:
9
routes/index.ts
Normal file
9
routes/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import * as express from "express";
|
||||
const router = express.Router();
|
||||
|
||||
/* GET home page. */
|
||||
router.get("/", (req, res, next) => {
|
||||
res.render("index", { title: "Express" });
|
||||
});
|
||||
|
||||
export = router;
|
||||
Reference in New Issue
Block a user