import { round } from 'common/math'; import { Fragment } from 'inferno'; import { useBackend } from '../backend'; import { Button, Section, NumberInput, Flex } from '../components'; import { Window } from '../layouts'; import { formatTime } from '../format'; export const BrigTimer = (props, context) => { const { act, data } = useBackend(context); return (
); };