mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
8196ea584d
* style: placeholder for progress value * style: rundown menu * style: extracted rundown takes whole screen * style: tweaks to rundown indicators * feat: allow exporting info * style: indicate action
18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
import * as Panel from '../PanelUtils';
|
|
|
|
import LogExport from './LogExport';
|
|
import InfoNif from './NetworkInterfaces';
|
|
|
|
export default function LogPanel() {
|
|
return (
|
|
<>
|
|
<Panel.Header>Application log</Panel.Header>
|
|
<Panel.Section>
|
|
<Panel.Paragraph>Ontime is streaming on the following network interfaces</Panel.Paragraph>
|
|
</Panel.Section>
|
|
<InfoNif />
|
|
<LogExport />
|
|
</>
|
|
);
|
|
}
|