Skip to content

Instantly share code, notes, and snippets.

@djibba22
Created June 25, 2020 02:19
Show Gist options
  • Save djibba22/888727432cb5985c5e5909b3539b987d to your computer and use it in GitHub Desktop.
Save djibba22/888727432cb5985c5e5909b3539b987d to your computer and use it in GitHub Desktop.
This is a simple route for a tutorial (Full Stack React)
var express = require('express');
var router = express.Router();
router.get('/', function(req, res, next) {
res.send(`You be Full Stackin Bruh`);
});
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment