mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import React from 'react'
|
|
|
|
const MessageContainer = (props) => {
|
|
return (
|
|
<div className="message-container">
|
|
<h2>{props.message}</h2>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default MessageContainer
|