mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 12:53:32 +00:00
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
import { ClockOverview, TimerOverview } from '../../overview/composite/TimeElements';
|
|
|
|
import style from './StatusBar.module.scss';
|
|
|
|
export default function StatusBarTimers() {
|
|
return (
|
|
<div className={style.timers}>
|
|
<TimerOverview className={style.runningTimer} />
|
|
<ClockOverview className={style.timeNow} shouldFormat />
|
|
</div>
|
|
);
|
|
}
|