ajout du form de base pour la demande de contact

This commit is contained in:
Medenos
2022-09-27 23:28:48 -04:00
parent 3dd586818e
commit 014bca24d8
3 changed files with 50 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import React from "react";
import { useEffect } from "react";
import ContactForm from "../components/ContactForm";
const ContactUs = () => {
@@ -9,7 +10,7 @@ const ContactUs = () => {
return (
<>
Nous contacter
<ContactForm/>
</>
);
}