Created
December 17, 2020 13:35
-
-
Save HasanGokce/d0afff045a4e69eb50f35c48bcbdf68d to your computer and use it in GitHub Desktop.
Response Content
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
| const express = require('express'); | |
| const router = express.Router(); | |
| router.get('/', (req, res) => { | |
| res.send('<h1 id="page-title">Messaging App</h1>'); | |
| }); | |
| module.exports = router; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment