From b66efc49566fd465d59c3e4e275b49efd47647a1 Mon Sep 17 00:00:00 2001 From: Raccoon Date: Wed, 5 May 2021 14:16:52 +0900 Subject: [PATCH] fix: Fix anchor tag --- FE/baseball/src/Components/Intro/GameStartButton.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FE/baseball/src/Components/Intro/GameStartButton.jsx b/FE/baseball/src/Components/Intro/GameStartButton.jsx index f2691422b..45a7a80b5 100644 --- a/FE/baseball/src/Components/Intro/GameStartButton.jsx +++ b/FE/baseball/src/Components/Intro/GameStartButton.jsx @@ -1,13 +1,14 @@ import styled from 'styled-components'; import GameTitle from '@/Components/Intro/GameTitle'; +import { Link } from 'react-router-dom'; const GameStartButton = () => { return ( - + - + ); }; export default GameStartButton;