generated from WildCodeSchool/create-js-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
56 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
export default function ResultatsAnnonce() { | ||
return <div>ResultatsAnnonce</div>; | ||
import CardOffre from "../../components/CardModel/CardOffre"; | ||
import HeaderLongTitreSsTitre from "../../components/Headers/HeaderLongTitreSsTitre"; | ||
|
||
function ResultatAnnonces() { | ||
return ( | ||
<> | ||
<HeaderLongTitreSsTitre /> | ||
<div className="container-page"> | ||
<CardOffre /> | ||
<CardOffre /> | ||
<CardOffre /> | ||
</div> | ||
</> | ||
); | ||
} | ||
export default ResultatAnnonces; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import HeaderCourt from "../../components/Headers/HeaderCourt"; | ||
import ButtonMaxi from "../../components/Boutons/ButtonMaxi"; | ||
import Input from "../../components/Inputs/Input"; | ||
import CheckboxCondition from "../../components/Inputs/CheckboxCondition"; | ||
|
||
function Search() { | ||
return ( | ||
<div> | ||
<HeaderCourt /> | ||
<div className="container-page with-rounded-border"> | ||
<h1>Ajouter une expérience</h1> | ||
|
||
<div className="container-input"> | ||
<Input titleInput="Intitulé du poste *" holderText="Chef de projet" /> | ||
<Input titleInput="Entreprise *" holderText="Inoxia" /> | ||
|
||
<div className="container-checkbox-experience"> | ||
<CheckboxCondition textCondition="J'occupe ce poste actuellement" /> | ||
<CheckboxCondition textCondition="J'occupe ce poste actuellement" /> | ||
<CheckboxCondition textCondition="J'occupe ce poste actuellement" /> | ||
<CheckboxCondition textCondition="J'occupe ce poste actuellement" /> | ||
</div> | ||
|
||
<ButtonMaxi textBtn="Ajouter l'expérience" /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
export default Search; |