mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-19 19:25:52 +08:00
35 lines
830 B
TypeScript
35 lines
830 B
TypeScript
|
import React from "react";
|
||
|
import Container from "@material-ui/core/Container";
|
||
|
import { makeStyles } from "@material-ui/core/styles";
|
||
|
import Grid from "@material-ui/core/Grid";
|
||
|
import Typography from "@material-ui/core/Typography";
|
||
|
|
||
|
const useStyles = makeStyles((theme) => ({
|
||
|
container: {
|
||
|
paddingTop: theme.spacing(4),
|
||
|
paddingBottom: theme.spacing(4),
|
||
|
},
|
||
|
paper: {
|
||
|
padding: theme.spacing(2),
|
||
|
display: "flex",
|
||
|
overflow: "auto",
|
||
|
flexDirection: "column",
|
||
|
},
|
||
|
}));
|
||
|
|
||
|
function RedisInfoView() {
|
||
|
const classes = useStyles();
|
||
|
|
||
|
return (
|
||
|
<Container maxWidth="lg" className={classes.container}>
|
||
|
<Grid container spacing={3}>
|
||
|
<Grid item xs={12}>
|
||
|
<Typography variant="h5">Redis Info</Typography>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</Container>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default RedisInfoView;
|