import React, { Fragment } from "react"; import { SingleUpload } from "../components"; import { Box } from "@material-ui/core"; interface UploadFirmwareFormProps { uploading: boolean; progress?: ProgressEvent; onFileSelected: (file: File) => void; onCancel: () => void; } class UploadFirmwareForm extends React.Component { handleDrop = (files: File[]) => { const file = files[0]; if (file) { this.props.onFileSelected(files[0]); } }; render() { const { uploading, progress, onCancel } = this.props; return ( Upload a new firmware file (.bin or .bin.gz) below to replace the existing firmware.

This can take up to a minute. Wait until you see "Activating new Firmware" and EMS-ESP will then automatically restart.
); } } export default UploadFirmwareForm;