For my chess game, I want to display a message in the middle of the screen when a player wins, such as "White Wins," etc.
The current setup is as follows:
<div>
<p> White Wins <p/>
<div/>
This message share the parent div with another component, but I need it to be displayed at the center of the board both vertically and horizontally.
I don't want to nest the message inside the Board component due to the complexity of passing values down to it.
<div className="board-container">
<playerWinsAlert/>
<Board/>
</div>