corrections bugs

This commit is contained in:
2026-06-23 16:12:28 +02:00
parent 0d3855a322
commit b40a975c9c
2 changed files with 19 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
function Carte(props) {
return (
<div className="carte">
<h2>{props.titre}</h2>
<p>{props.texte}</p>
</div>
);
}
export default Carte;
+9
View File
@@ -0,0 +1,9 @@
function Footer() {
return (
<footer>
<p>Footer toto</p>
</footer>
);
}
export default Footer;