data-display/routes/users.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
203 B
JavaScript

var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res, next) {
res.send('respond with a resource');
});
module.exports = router;