Import the available default-themes, grab your slide-set from the DOM, load and start the presentation:
import { themes } from "../lib/present.js"
const slideSet = document.querySelector("slide-set")
const { start } = load(slideSet, themes.dark)
const { error, stop } = start()
if (error)
console.error(error)