import { Box } from "@mui/material"; import { CUserForm } from "./UserForm"; import { connect } from "react-redux"; export const AdminUserPage = ({ good }) => ( ); export const CAdminUserPage = connect((state) => ({ good: state.promise?.adminUserById?.payload || {} }))(AdminUserPage);