import { BooleanLike } from 'common/react'; import { useBackend } from '../backend'; import { Button, LabeledList, Section } from '../components'; import { Window } from '../layouts'; type Data = { on: BooleanLike; visible: BooleanLike; }; export const AssemblyInfrared = (props, context) => { const { act, data } = useBackend(context); const { on, visible } = data; return (
); };