added /api/info/:id route

This commit is contained in:
Danny Coates
2018-01-30 12:15:09 -08:00
parent 81534d2c13
commit 97ad674be2
20 changed files with 74 additions and 38 deletions

6
app/pages/blank.js Normal file
View File

@@ -0,0 +1,6 @@
const html = require('choo/html');
module.exports = function() {
const div = html`<div></div>`;
return div;
};