import { For } from "solid-js"; import texts from "../i18n"; import { Dialog } from "./Widgets/Dialog"; export function InteractionHelp(props: { onClose: () => void; variant: "reader" | "site"; }) { return (
{(section) => (

{section.title}

    {(item) => (
  • )}
)}
); } function HelpText(props: { text: string }) { return ( {(part) => part.startsWith("**") && part.endsWith("**") ? {part.slice(2, -2)} : part } ); }