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.
Merge branch 'dev' of github.com:WildCodeSchool/2023-09-JS-BDX-P3-La_…
…Rive_Droite into UserProfileModel
- Loading branch information
Showing
7 changed files
with
60 additions
and
4 deletions.
There are no files selected for viewing
File renamed without changes.
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,8 @@ | ||
import { createContext, useContext } from "react"; | ||
|
||
const LogContext = createContext(); | ||
|
||
function LogContextProvider() {} | ||
|
||
export default LogContextProvider; | ||
export const useLogContext = () => useContext(LogContext); |
Empty file.
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
Empty file.
File renamed without changes.
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,33 @@ | ||
import ButtonMaxi from "../../components/Boutons/ButtonMaxi"; | ||
import Date from "../../components/Inputs/Date"; | ||
import Input from "../../components/Inputs/Input"; | ||
import Select from "../../components/Inputs/Select"; | ||
import TextArea from "../../components/Inputs/TextArea"; | ||
import HeaderCourt from "../../components/Headers/HeaderCourt"; | ||
|
||
function Offer() { | ||
return ( | ||
<div> | ||
<HeaderCourt /> | ||
<div className="container-page with-rounded-border"> | ||
<h1>Ajouter une offre</h1> | ||
<Select titleSelect="Niveau d'étude *" valueSelect="Master 2" /> | ||
<Select titleSelect="Domaine *" /> | ||
<Input | ||
titleInput="Nom de l'établissement *" | ||
holderText="Sup de pub" | ||
inputType="text" | ||
/> | ||
<Date titleCalendar="Date de début *" /> | ||
<Date titleCalendar="Date de fin *" /> | ||
<TextArea | ||
titleInput="Description de la formation *" | ||
holderText="Lorem ipsum dolor si amet" | ||
/> | ||
<ButtonMaxi textBtn="Ajouter une formation" /> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Offer; |