"use strict"; // P A C K A G E S import dedent from "dedent"; import html from "choo/html"; import raw from "choo/html/raw"; // E X P O R T export default function () { return dedent`
${raw(example1())}
`; } // H E L P E R S function example1() { return html`
lbry://
`; } function sidebar() { // TODO: Save tutorial position to localStorage return dedent`
  • Get details of media (aka, "claim" metadata)
    In this example, you can see what runs under the hood when selecting content to view in the LBRY app.
  • Create a meme and upload it to the LBRY blockchain
    Sometimes you want to create content, not just consume it. In this example, you can create a meme and upload it to LBRY!
  • Support creators on LBRY with a tip, on us!
    In the LBRY app, you can financially support your favorite creators by donating LBRY Coin (LBC). In this example, we are donating LBC in your stead.
  • `; }