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.
icon
Step 2:
Select an end date, it has to be at least one date post the start date.
icon
Step 3:
Click on the Download Excel button and wait for the document to download.
icon
{/* } aria-controls="panel2bh-content" id="panel2bh-header" > Users You are currently not an owner Donec placerat, lectus sed mattis semper, neque lectus feugiat lectus, varius pulvinar diam eros in elit. Pellentesque convallis laoreet laoreet. */} {/* } aria-controls="panel3bh-content" id="panel3bh-header" > Advanced settings Filtering has been entirely disabled for whole web server Nunc vitae orci ultricies, auctor nunc in, volutpat nisl. Integer sit amet egestas eros, vitae egestas augue. Duis vel est augue. } 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;