Date: 2 Octobre 2025
- ✅ Package installé (v5.0.8)
- ✅ Stores configurés:
// MyArray.ts | |
export class MyArray<T> { | |
private items: Record<number, T> = {}; | |
public length: number = 0; | |
constructor(initialItems?: T[]) { | |
if (initialItems) { | |
initialItems.forEach((item) => this.push(item)); | |
} | |
} |
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Dropdown Recherchable</title> | |
<link rel="stylesheet" href="styles.css" /> | |
</head> | |
<body> | |
<div class="container"> |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<link rel="stylesheet" href="styles.css" /> | |
</head> | |
<body> | |
<div id="calculator"> |
<div class="grid sm:grid-cols-2 md:grid-cols-4"> | |
<picture> | |
<source | |
srcset="./images/mobile/image-gallery-milkbottles.jpg" | |
media="(max-width: 767px)" | |
/> | |
<source | |
srcset="./images/desktop/image-gallery-milkbottles.jpg" | |
media="(min-width: 768px)" | |
/> |
export const TRANSACS = [
{
id: "018bf608-e008-4015-b13f-95f823f45ecb",
merchantId: "a8796e61-5fea-4775-8956-5aa4d1eeb6be",
merchantName: "ASERNUM",
number: "+2250777404136",
service_name: "FACTURATION API RNPP",
customer_firstname: "Destinataire",
export const getAdminTransactions = async (
paginationArg: TPaginationArgs = { limit: 10, page: 1 },
filters?: Record<string, any>,
): Promise<TGetListTransactions> => {
const { limit, page } = paginationArg;
const filtersToStr = getFilterPath(filters);
try {
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Newsletter</title> | |
<style> | |
* { | |
padding: 0; | |
margin: 0; |
[
{
"email": "[email protected]" # Création de demande
"approval_level": 0
},
{
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Meilleurs Services Informatiques - Tech Solutions</title> | |
<link | |
rel="stylesheet" | |
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" | |
/> |