Skip to content

Commit

Permalink
fix: Fix anchor tag
Browse files Browse the repository at this point in the history
juddroid committed May 5, 2021
1 parent a29781a commit b66efc4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions FE/baseball/src/Components/Intro/GameStartButton.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import styled from 'styled-components';
import GameTitle from '@/Components/Intro/GameTitle';
import { Link } from 'react-router-dom';

const GameStartButton = () => {
return (
<a href="/home">
<Link to="/home">
<GameStartButtonStyle>
<GameTitle />
</GameStartButtonStyle>
</a>
</Link>
);
};
export default GameStartButton;

0 comments on commit b66efc4

Please sign in to comment.