2
0
mirror of https://github.com/hibiken/asynqmon.git synced 2026-08-31 07:54:30 +08:00

(ui): Rename TasksTable to TasksTableContainer

This commit is contained in:
Ken Hibino
2022-04-02 20:11:34 -07:00
parent ea78dacaf6
commit e83c77cbd4
2 changed files with 4 additions and 4 deletions

View File

@@ -145,7 +145,7 @@ const useStyles = makeStyles((theme) => ({
},
}));
function TasksTable(props: Props & ReduxProps) {
function TasksTableContainer(props: Props & ReduxProps) {
const { currentStats } = props;
const classes = useStyles();
const history = useHistory();
@@ -259,4 +259,4 @@ function TasksTable(props: Props & ReduxProps) {
);
}
export default connector(TasksTable);
export default connector(TasksTableContainer);