Created
June 25, 2020 02:19
-
-
Save djibba22/888727432cb5985c5e5909b3539b987d to your computer and use it in GitHub Desktop.
This is a simple route for a tutorial (Full Stack React)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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