You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
479 B

import { observer } from "mobx-react";
import * as React from "react";
import { Segment } from "semantic-ui-react";
import { SectionRunner } from "@common/sprinklers";
@observer
export default class SectionRunnerView extends React.Component<{ sectionRunner: SectionRunner }, {}> {
render() {
return (
<Segment>
<h4>Section Runner Queue</h4>
{this.props.sectionRunner.toString()}
</Segment>
);
}
}