You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

import React from 'react';
import NavigationDashboard from '../components/NavigationDashboard';
const Parametre = () => {
return (
<body>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"></link>
<div className="page_parametre">
{/* Create an account page */}
<div className="haut_de_page">
<h2 className="titre">Parametre</h2>
<div className="rechLogo">
<div className="input_box">
<input type="search" placeholder="Rechercher..."/>
<span className="search">
<i class="uil uil-search search-icon"></i>
</span>
</div>
<img className="logo" srcSet="./LogoApp.svg"/>
</div>
</div>
<div className="bas_de_page">
<NavigationDashboard />
<div className="Parametre">
coucou
</div>
</div>
</div>
</body>
);
};
export default Parametre;