"use strict"; // P A C K A G E S const dedent = require("dedent"); const html = require("choo-async/html"); const raw = require("nanohtml/raw"); // E X P O R T module.exports = exports = () => dedent`
${raw(example1())}
`; function sidebar() { // TODO: Save tutorial position to localStorage return dedent`
  • Get details of media (aka, "claim" metadata)
  • Create a meme and upload it to the LBRY blockchain
  • Support creators on LBRY with a tip, on us!
  • `; } function example1() { return html`
    lbry://
    `; }