"use strict"; // I M P O R T S import dedent from "dedent"; import html from "choo/html"; import raw from "choo/html/raw"; // E X P O R T export default () => dedent`

${raw(example1())}
`; // H E L P E R S function example1() { return html`
lbry://
`; } function navigation() { // 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!
  • `; }