import React from "react";
import Button from "@mui/material/Button";
import Card from "@mui/material/Card";
class ListItem extends React.Component {
render() {
return (
(window.location = `/${this.props._id}`)}
>
{this.props.timestamp_in_utc} |
{this.props.ip}:{this.props.port}
|
{this.props.domain} |
{this.props.system_name} |
{this.props.display_name}
|
{this.props.reliability}
|
|
);
}
}
export default ListItem;