Farmbot-Web-App/frontend/devices/components/hardware_settings/space_panel_header.tsx

24 lines
546 B
TypeScript
Raw Normal View History

2017-06-29 12:54:02 -06:00
import * as React from "react";
import { Row, Col } from "../../../ui/index";
2019-04-02 13:59:37 -06:00
import { t } from "../../../i18next_wrapper";
2017-06-29 12:54:02 -06:00
export function SpacePanelHeader(_: {}) {
2017-06-29 12:54:02 -06:00
return <Row>
2018-01-29 11:32:32 -07:00
<Col xs={2} xsOffset={6} className={"centered-button-div"}>
2017-06-29 12:54:02 -06:00
<label>
{t("X AXIS")}
</label>
</Col>
2018-01-29 11:32:32 -07:00
<Col xs={2} className={"centered-button-div"}>
2017-06-29 12:54:02 -06:00
<label>
{t("Y AXIS")}
</label>
</Col>
2018-01-29 11:32:32 -07:00
<Col xs={2} className={"centered-button-div"}>
2017-06-29 12:54:02 -06:00
<label>
{t("Z AXIS")}
</label>
</Col>
</Row>;
2017-06-29 12:54:02 -06:00
}