mirror of
https://github.com/genemecija/learn-morse-code.git
synced 2026-01-11 11:10:03 +01:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
|
|
import React from "react"
|
||
|
|
|
||
|
|
function ChallengeWord(props) {
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div id="challengeWord">{spannedWord}</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default React.memo(ChallengeWord)
|