import { Button, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Typography, } from "@mui/material"; import React from "react"; import { Link } from "react-router-dom"; export default function EmailCms() { const pages = [ { name: "New user registration", action: "Edit", path: "/email-cms/registration-email", }, { name: "Forgot Password", action: "Edit", path: "#", }, { name: "Change Password Notification ", action: "Edit", path: "#", }, { name: "New Order", action: "Edit", path: "#", }, { name: "Order - Processing", action: "Edit", path: "#", }, { name: "Order - Dispatched", action: "Edit", path: "#", }, { name: "Order - Delivered", action: "Edit", path: "#", }, { name: "Order - Cancelled", action: "Edit", path: "#", }, ]; return (
Email CMS Page Action {pages.map((row) => ( {row.name} {" "} ))}
); }