22 lines
338 B
JavaScript
22 lines
338 B
JavaScript
import Recherche_cartouche_com from "../components/Recherche_formation_com";
|
|
import Navigation from "../components/Navigation";
|
|
import Footer from "./footer";
|
|
|
|
const recherche = () => {
|
|
|
|
|
|
return (
|
|
<div>
|
|
<Navigation />
|
|
<div>
|
|
<Recherche_cartouche_com />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
}
|
|
|
|
|
|
export default recherche;
|