-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from microsoft/anpethel/howToPlay
creating How to play screen
- Loading branch information
Showing
4 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from "react"; | ||
import { H1 } from "../../components/Typography"; | ||
import { H2 } from "../../components/Typography"; | ||
import { usePageTracking } from "../../hooks/usePageTracking"; | ||
|
||
export function HowToPlayScreen(): React.ReactElement { | ||
usePageTracking("HowToPlayScreen"); | ||
|
||
return ( | ||
<div> | ||
<H1>How To Play</H1> | ||
<div className="game-screen-margin-top"> | ||
<H2>Guidance</H2> | ||
<p> | ||
This game helps you explore career options and | ||
gain valuable skillsets along the way. To get | ||
started, please enter your first name, a career | ||
that interests you how many rounds you want to | ||
play. Each round will consist of a Scenario and | ||
3 Options for you to choose from that will lead | ||
to the next Scenario. After all the rounds finish, | ||
we will recap the learnings. Have fun and happy | ||
learning! Look for a surprise at the end as well. | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./HowToPlayScreen"; |