import { linkEvent } from 'inferno';
import { Button } from 'tgui/components';
import { createRenderer } from 'tgui/renderer';
const render = createRenderer();
const handleClick = () => undefined;
export const SingleButton = () => {
const node = ;
render(node);
};
export const SingleButtonWithCallback = () => {
const node = ;
render(node);
};
export const SingleButtonWithLinkEvent = () => {
const node = ;
render(node);
};
export const ListOfButtons = () => {
const nodes: JSX.Element[] = [];
for (let i = 0; i < 100; i++) {
const node = ;
nodes.push(node);
}
render(
{nodes}
);
};
export const ListOfButtonsWithCallback = () => {
const nodes: JSX.Element[] = [];
for (let i = 0; i < 100; i++) {
const node = (
);
nodes.push(node);
}
render({nodes}
);
};
export const ListOfButtonsWithLinkEvent = () => {
const nodes: JSX.Element[] = [];
for (let i = 0; i < 100; i++) {
const node = (
);
nodes.push(node);
}
render({nodes}
);
};
export const ListOfButtonsWithIcons = () => {
const nodes: JSX.Element[] = [];
for (let i = 0; i < 100; i++) {
const node = (
);
nodes.push(node);
}
render({nodes}
);
};
export const ListOfButtonsWithTooltips = () => {
const nodes: JSX.Element[] = [];
for (let i = 0; i < 100; i++) {
const node = (
);
nodes.push(node);
}
render({nodes}
);
};