add link to page

This commit is contained in:
Hugo Lextrait 2023-04-14 17:06:46 +02:00
parent a4f4aa7cfc
commit 2d9d6b6c50
3 changed files with 5 additions and 2 deletions

View File

@ -21,5 +21,5 @@ version: 0.0.1
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.4.0
appVersion: 0.4.1

View File

@ -5,6 +5,7 @@ import Typography, { ITypo } from "@Front/Components/DesignSystem/Typography";
import Button, { EButtonVariant } from "@Front/Components/DesignSystem/Button";
import PlusIcon from "@Assets/Icons/plus.svg";
import UserFolder from "@Front/Components/DesignSystem/UserFolder";
import Link from "next/link";
type IProps = {
folder: IDashBoardFolder;
@ -23,7 +24,9 @@ export default class ClientSection extends React.Component<IProps, IState> {
<div className={classes["title"]}>
<Typography typo={ITypo.P_18}>Aucun client nest associé au dossier.</Typography>
</div>
<Link href={"/dossier/ajouter-client"}>
<Button variant={EButtonVariant.LINE} icon={PlusIcon}>Ajouter un client</Button>
</Link>
</div>}
</div>;
}

View File

@ -1,3 +1,3 @@
{
"version": "v0.4.0"
"version": "v0.4.1"
}