aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/shikiCodeblocks/previewExample.tsx
blob: 971d01670fbd7fea932dc5aaa3b04da88fa1ee06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable 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>
</>;