mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-14 09:03:03 -04:00
Bundle dependencies with extensions for webstore rule compliance (#1740)
This commit is contained in:
parent
efb88a4df8
commit
41f5d71e38
46 changed files with 1633 additions and 73 deletions
13
src/plugins/shikiCodeblocks.desktop/previewExample.tsx
Normal file
13
src/plugins/shikiCodeblocks.desktop/previewExample.tsx
Normal file
|
@ -0,0 +1,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>
|
||||
</>;
|
Loading…
Add table
Add a link
Reference in a new issue