Skip to content

Instantly share code, notes, and snippets.

@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)
/**