`;
}
function renderReceipts() {
const receipts = appState.receipts;
return `
${receipts.length === 0 ? `
🧾
Aucun reçu. Générez-en un nouveau.
` : `
${receipts.map((receipt, index) => `
${receipt.number}
${receipt.clientName} • ${receipt.amount.toFixed(0)} FCFA • ${receipt.date}
`).join('')}
`}
`;
}
function renderCreateReceipt() {
return `
`;
}
function renderSettings() {
const company = appState.companyInfo;
return `