mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
21 lines
527 B
TypeScript
21 lines
527 B
TypeScript
import { useBackend } from '../../../backend';
|
|
import { Button, Section } from '../../../components';
|
|
|
|
export const ControlFixes = (props) => {
|
|
const { act } = useBackend();
|
|
|
|
return (
|
|
<Section title="Bug Fixes">
|
|
<Button fluid onClick={() => act('rejuvenate')}>
|
|
Rejuvenate
|
|
</Button>
|
|
<Button fluid onClick={() => act('popup-box')}>
|
|
Send Message Box
|
|
</Button>
|
|
<Button fluid onClick={() => act('stop-orbits')}>
|
|
Clear All Orbiters
|
|
</Button>
|
|
</Section>
|
|
);
|
|
};
|