show supported sites

This commit is contained in:
Wingy 2020-11-05 17:42:24 -05:00
parent fca81ce279
commit 9dbea43066
5 changed files with 25 additions and 4 deletions

View file

@ -0,0 +1,11 @@
const express = require('express')
module.exports = () => {
const router = express.Router()
router.get('/', async (req, res) => {
res.render('supported-sites', { title: 'Supported Sites' })
})
return router
}