« get me outta code hell

generateUnsafeMunchy.js « dependencies « content « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/generateUnsafeMunchy.js
blob: df8231efcc9b548a122d5f1466454a1957cb7b7e (plain)
1
2
3
4
5
6
7
8
export default {
  slots: {
    contentSource: {type: 'string'},
  },

  generate: (slots, {html}) =>
    new html.Tag(null, null, slots.contentSource),
};