import { Link as RouterLink } from 'react-router-dom'; // material-ui import { Link, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Typography } from '@mui/material'; // project imports import MainCard from 'components/MainCard'; // table data function createData(name, designation, product, date, badgeText, badgeType) { return { name, designation, product, date, badgeText, badgeType }; } const rows = [ createData('Materially', 'Powerful Admin Theme', '16,300', '$53', '$15,652'), createData('Photoshop', 'Design Software', '26,421', '$35', '$8,785'), createData('Guruable', 'Best Admin Template', '8,265', '$98', '$9,652'), createData('Flatable', 'Admin App', '10,652', '$20', '$7,856') ]; // =========================|| DATA WIDGET - APPLICATION SALES ||========================= // const ApplicationSales = () => ( View all } > Application Sales Avg. Price Total {rows.map((row, index) => ( {/* {row.name} {row.designation} {row.product} {row.date} {row.badgeText} */} ))}
); export default ApplicationSales;