import React, { Component } from 'react'; import { Typography, Box, List, ListItem, ListItemText, Link, ListItemAvatar } from '@material-ui/core'; import { SectionContent } from '../components'; import CommentIcon from "@material-ui/icons/CommentTwoTone"; import MenuBookIcon from "@material-ui/icons/MenuBookTwoTone"; import GitHubIcon from "@material-ui/icons/GitHub"; import StarIcon from "@material-ui/icons/Star"; import ImportExportIcon from "@material-ui/icons/ImportExport"; import BugReportIcon from "@material-ui/icons/BugReportTwoTone"; export const WebAPISystemSettings = window.location.origin + "/api?device=system&cmd=settings"; export const WebAPISystemInfo = window.location.origin + "/api?device=system&cmd=info"; class EMSESPHelp extends Component { render() { return ( For the latest news and updates go to the {'official documentation'} website For live community chat join our {'Discord'} server To report an issue or feature request go to {'click here'} To list your system settings {'click here'} To create a report of the current EMS-ESP status {'click here'} EMS-ESP is free and open-source.

Please consider supporting this project by giving it a on our {'GitHub page'}.


) } } export default EMSESPHelp;