import React, { useState } from 'react';
import Accordion from '@mui/material/Accordion';
import AccordionDetails from '@mui/material/AccordionDetails';
import AccordionSummary from '@mui/material/AccordionSummary';
import Typography from '@mui/material/Typography';
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
import './Help.css';
function Help({ url, show }) {
const [startDate, setStartDate] = useState("");
const [endDate, setEndDate] = useState("");
const [expanded, setExpanded] = useState(false);
const handleChange =
(panel) => (event, isExpanded) => {
setExpanded(isExpanded ? panel : false);
};
return (
}
aria-controls="panel1bh-content"
id="panel1bh-header"
>
Auto Analysis
Auto Analysis of device data with dye and HB
Step 1:
Click on the start date tab and select the necessary date. Repeat the same process on the end date tab as well.
Step 2:
Select an end date, it has to be at least one date post the start date.
Step 3:
Click on the Download Excel button and wait for the document to download.
}
aria-controls="panel2bh-content"
id="panel2bh-header"
>
Raw Data
Download raw data
Step 1:
Click on the start date tab and select the necessary date. Repeat the same process on the end date tab as well.
Step 2:
Click on the Download Excel button and wait for the document to download.
}
aria-controls="panel3bh-content"
id="panel3bh-header"
>
Registration
Create and clear entries for taking readings in devices
Step 1:
Enter the sample or solution name in the name tab with appropriate format given below.
Step 2:
Click on the create button to get an ID and you will receive a confirmation message.
If you wish to clear the generated IDs click on the clear button and you will receive a confirmation message.
{/*
}
aria-controls="panel4bh-content"
id="panel4bh-header"
>
Personal data
Nunc vitae orci ultricies, auctor nunc in, volutpat nisl. Integer sit
amet egestas eros, vitae egestas augue. Duis vel est augue.
*/}
);
}
export default Help;