Skip to content

Commit

Permalink
feat(dossier): simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-sanna-eki committed Dec 10, 2023
1 parent 50d6dc7 commit 11ca112
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions app/dossiers/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import Link from "next/link";

export default async function Dossiers() {
export default function Dossiers() {
// TODO: match old website url ":id/dossiers/:id"
return (
<div>
<Link href="dossiers/dossier">Lien vers un dossier</Link>
</div>
);
return <Link href="dossiers/dossier">Lien vers un dossier</Link>;
}

0 comments on commit 11ca112

Please # to comment.