Farmbot-Web-App/frontend/farm_designer/farm_events/tz_warning.tsx

15 lines
449 B
TypeScript

import * as React from "react";
import { timezoneMismatch } from "../../devices/timezones/guess_timezone";
import { Content } from "../../constants";
import { t } from "../../i18next_wrapper";
interface TzWarningProps {
deviceTimezone: string | undefined;
}
export function TzWarning({ deviceTimezone }: TzWarningProps) {
return <div className="note">
{timezoneMismatch(deviceTimezone) ? t(Content.FARM_EVENT_TZ_WARNING) : ""}
</div>;
}