fix @Vendicated insanities

This commit is contained in:
nin0 2025-05-22 19:47:48 -04:00
parent ff61e5ea04
commit 9894f25f8f
Signed by: nin0
SSH key fingerprint: SHA256:NOoDnFVvZNFvqfXCIhzr6oCTDImZAbTTuyAysZ8Ufk8
4 changed files with 0 additions and 13 deletions

View file

@ -1,9 +0,0 @@
import { TextDisplay } from "./TextDisplay";
export function br() {
return (
<>
<TextDisplay>{"\n"}</TextDisplay>
</>
);
}

View file

@ -1,5 +1,4 @@
export * from "./ActionRow";
export * from "./br";
export * from "./Button";
export * from "./ComponentMessage";
export * from "./Container";

View file

@ -1,5 +1,3 @@
import { br } from "./br";
export const Fragment = Symbol("ComponentsJsx.Fragment");
type FunctionComponent = (props: any) => any;