From 55eb5452226112dc054beb536c988db1d7d3e406 Mon Sep 17 00:00:00 2001 From: ItsukiKigoshi Date: Mon, 15 Jul 2024 09:56:14 +0900 Subject: [PATCH] fix: remove comments outs --- src/components/Main.tsx | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/src/components/Main.tsx b/src/components/Main.tsx index eb416ff..b9fb2c5 100644 --- a/src/components/Main.tsx +++ b/src/components/Main.tsx @@ -36,21 +36,17 @@ export default function Main() { }, ]; - const linkButtons = links.map( - ( - link // This is a map function. It is used to create a list of elements. - ) => ( - - - - ) - ); + const linkButtons = links.map((link) => ( + + + + )); return (