mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
principal screen done
This commit is contained in:
13
src/App.js
13
src/App.js
@@ -2,6 +2,7 @@ import React, {useState} from "react";
|
||||
import CurrentScore from "./components/CurrentScore";
|
||||
import Hangman from "./components/Hangman/Hangman";
|
||||
import Header from "./components/Header";
|
||||
import PuzzleWord from "./components/PuzzleWord";
|
||||
|
||||
function App() {
|
||||
|
||||
@@ -13,9 +14,17 @@ function App() {
|
||||
<Header language={language}/>
|
||||
|
||||
<div className="app">
|
||||
<Hangman />
|
||||
|
||||
<div className='column-1'>
|
||||
<Hangman />
|
||||
</div>
|
||||
|
||||
<CurrentScore currentScore={currentScore} />
|
||||
<div className='column-2'>
|
||||
<CurrentScore currentScore={currentScore} />
|
||||
<PuzzleWord />
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user