diff --git a/tgui/packages/tgui/interfaces/ATM.js b/tgui/packages/tgui/interfaces/ATM.js index 1b2ea23a183..22fc80fff14 100644 --- a/tgui/packages/tgui/interfaces/ATM.js +++ b/tgui/packages/tgui/interfaces/ATM.js @@ -2,3 +2,32 @@ import { useBackend } from '../backend'; import { Button, LabeledList, Section } from '../components'; import { Window } from '../layouts'; +export const ATM = (props, context) => { + const { act, data } = useBackend(context); + const { + machine_id, + held_card_name, + ticks_left_locked_down, + } = data; + return ( + + +
+ + + {health} + + + {color} + + +
+
+
+ ); +};