From 50ccbcebbf936a10376ca7f8e244e35bd5311ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Bl=C3=A4ttermann?= Date: Tue, 24 Jan 2023 07:44:39 +0100 Subject: [PATCH] Refactor component This removes a unnessary `div` and a duplicate link --- website/src/components/readnext.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/src/components/readnext.js b/website/src/components/readnext.js index 08c607bf1..159a4d370 100644 --- a/website/src/components/readnext.js +++ b/website/src/components/readnext.js @@ -9,15 +9,15 @@ import classes from '../styles/readnext.module.sass' export default function ReadNext({ title, to }) { return ( -
- + + {title} - - + +
+ + ) }