import React from 'react'; import { MoreVertical } from 'lucide-react'; const tableData = [ { month: 'Jan', income: '0.00 AED', expense: '0.00 AED', profit: '0.00 AED', status: 'Profit' }, { month: 'Feb', income: '0.00 AED', expense: '0.00 AED', profit: '0.00 AED', status: 'Profit' }, { month: 'Mar', income: '0.00 AED', expense: '0.00 AED', profit: '0.00 AED', status: 'Profit' }, { month: 'Apr', income: '0.00 AED', expense: '0.00 AED', profit: '0.00 AED', status: 'Profit' }, ]; export default function ProfitTable() { return (

Profit & Loss Trend (Monthly)

{tableData.map((row, index) => ( ))}
Month Income Expense Profit Status
{row.month} {row.income} {row.expense} {row.profit} {row.status}
); }