Skip to content

Commit

Permalink
feat(Entreprise): Modification du type Link en LinkStyledButton dans … (
Browse files Browse the repository at this point in the history
#1652)

* feat(Entreprise): Modification du type Link en LinkStyledButton dans StageDeposerOffreFormulaireEnvoye

* feat(Entreprise): Modification suite au retour de PR

* feat(Entreprise): Modification suite au retour de PR
  • Loading branch information
Nofe18 authored Jul 20, 2023
1 parent d0f3137 commit 9c6e609
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import { Container } from '~/client/components/layouts/Container/Container';
import { Link } from '~/client/components/ui/Link/Link';
import { LinkStyledAsButton } from '~/client/components/ui/LinkStyledAsButton/LinkStyledAsButton';
import useReferrer from '~/client/hooks/useReferrer';
import { URL_DEPOSER_OFFRE } from '~/pages/stages/deposer-offre/index.page';

Expand All @@ -12,20 +12,22 @@ export default function StageDeposerOffreFormulaireEnvoye() {

return (
<Container className={styles.container}>
<div className={styles.texteValidation}>Cette offre est soumise à une validation avant sa mise en ligne.</div>
<div className={styles.texteValidation}>Cette offre est soumise à une validation avant sa mise en ligne.
</div>
<div className={styles.boutonsConfirmationEnvoi}>
<Link
<LinkStyledAsButton
href={'/'}
appearance={'asPrimaryButton'}
>
Retourner à l’accueil
</Link>
<Link
Retourner à l’accueil
</LinkStyledAsButton>
<LinkStyledAsButton
href={URL_DEPOSER_OFFRE}
appearance={'asSecondaryButton'}
>
Déposer une offre de stage
</Link>
Déposer une offre de stage
</LinkStyledAsButton>
</div>
</Container>
);}
);
}

0 comments on commit 9c6e609

Please sign in to comment.