Skip to content

Instantly share code, notes, and snippets.

@kouameYao
kouameYao / user-fer.md
Last active August 9, 2024 04:51
Fer assets

Demande d'achat

[
    {
        "email": "[email protected]" # Création de demande
        "approval_level": 0
    },
    {
@kouameYao
kouameYao / button.js
Created September 29, 2023 09:28
Test unitaire
// Button.js
import React from 'react';
function Button(props) {
return (
<button onClick={props.onClick} disabled={props.disabled}>
{props.label}
</button>
);
}
// =========================
// -=-=-=-=-=-=-= DEVOIR A RENDRE LE 16/01/2024 AVANT 23h59 min -=-=-=-=-=-=-=-=-=-=-
// =========================
// NB: Pour tous les exercices, prière des les placer dans un fichier (.js) séparé puis l 'importer dans le fichier (.html)
// EXERCICE 1 - LES BOUCLES (5 points)
/**