Files: 1c61b53a1012292e58ac4a7b2d2f450506a99711 / views / awesome.js
273 bytesRaw
1 | const html = require('choo/html') |
2 | |
3 | module.exports = (song) => { |
4 | console.log(song) |
5 | return html` |
6 | <div> |
7 | <h1>YOU! YOU ARE ${song.title}.</h1> |
8 | <p>${song.post}</p> |
9 | <a href='${song.link}'>This is a link</a> |
10 | |
11 | <a href='/'>go back home</a> |
12 | </div> |
13 | ` |
14 | } |
15 |
Built with git-ssb-web