Shiki settings preview (#297)
This commit is contained in:
13
src/plugins/shikiCodeblocks/previewExample.tsx
Normal file
13
src/plugins/shikiCodeblocks/previewExample.tsx
Normal file
@ -0,0 +1,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>
|
||||
</>;
|
Reference in New Issue
Block a user