blob: 508153b4b430d17d1ab9d07d63402b7230b54c4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* eslint-disable simple-header/header */
import React from "react";
const handleClick = async () =>
console.log((await import("@webpack/common")).Clipboard.copy("\u200b"));
export const Example: React.FC<{
real: boolean,
shigged?: number,
}> = ({ real, shigged }) => <>
<p>{`Shigg${real ? `ies${shigged === 0x1B ? "t" : ""}` : "y"}`}</p>
<button onClick={handleClick}>Click Me</button>
</>;
|