data-display/routes/index.js
Blizzard Finnegan 8306850bfe
Start development of view
Currently have the base hello world, with a div for the graph to
eventually go in.
Plan to use Plotly libraries for 3D graphing
2024-03-28 13:25:05 -04:00

9 lines
205 B
JavaScript

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