import { Fragment } from 'inferno'; import { useBackend } from '../backend'; import { Button, Section } from '../components'; export const BrigTimer = props => { const { act, data } = useBackend(props); return (
); };