Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added play again button in credits page #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
added play again button in credits page
Ishmam156 committed Oct 11, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit d69c6c14fed0ce96b437f012a45298b80d35bb81
7 changes: 5 additions & 2 deletions src/components/Credits.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import { Link } from "react-router-dom";
import "../style/Credits.scss";
import ReactLogo from "../imgs/react.svg";

@@ -8,7 +9,7 @@ function Credits(props) {
<div className="heading">
<a href={"https://github.com/untitled-team-101"} target="_blank">
Made with
<img className="App-logo" src={ReactLogo} alt={"logo"}/>
<img className="App-logo" src={ReactLogo} alt={"logo"} />
by @untitledTeam
</a>
</div>
@@ -42,7 +43,9 @@ function Credits(props) {
</li>
</ul>
</div>

<Link to={"/game"}>
<div className={"playBtn"}>Play Again!</div>
</Link>
</div>
);
}