Hangman and Current score done

This commit is contained in:
2021-10-13 15:46:35 -03:00
parent 9c09a32ba7
commit 37b8c821d1
20 changed files with 2286 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react'
const CurrentScore = (props) => {
return (
<div>
<h2>Current Score: {props.currentScore}</h2>
</div>
)
}
export default CurrentScore