import { Box, Grid, Typography, Divider, Button, TextField } from '@mui/material'; import FuseSvgIcon from '@fuse/core/FuseSvgIcon'; import TableInvoice from './components/tableInvoice/TableInvoice'; import { ItemInvoice } from './DataInvoiceInterface'; interface Props { handleAddItem: () => void; items: ItemInvoice[]; } function DataInvoiceRender({ handleAddItem, items }: Props) { return ( Datos factura Sub Total: $10 Iva 12%: $5 Total: $15 ); } export default DataInvoiceRender;