import { Component, createSignal, Show } from "solid-js"; import { Handlers } from "../../types"; import Scrollable from "./reusable/Scrollable"; import { state, setState } from "../../state"; import "./Share.css"; import download from "../../utils/download"; const Share: Component<{ handlers: Handlers; class?: string }> = (props) => { const [copyId, setCopyId] = createSignal(""); const [imageRendering, setImageRendering] = createSignal(false); const [animationRendering, setAnimationRendering] = createSignal(false); const blinkCopy = (id: string) => { setCopyId(id); setTimeout(() => setCopyId(""), 1000); }; return (

Board options


Current position

{ const target = e.target as HTMLInputElement; target.select(); }} />

); }; export default Share;