const html = require('nanohtml')
const newZineForm = require('./newZineForm')
const shelving = require('./shelving')
module.exports = view
function view (state, emit) {
return html`
Welcome to your Zine Library, Good Friend!
${newZineForm()}
${shelving(state)}
`
// newZineForm is a button for adding new zines
// shelving is the grid that shows all zines pulled from yr zines/ folder
// I am writing these notes here cos I dont' know how to leave comments in nanohtml code :( .
// If anyone knows i'd appreciate the help!
}