mirror of
https://github.com/genemecija/learn-morse-code.git
synced 2025-12-31 22:00:11 +01:00
15 lines
407 B
JavaScript
15 lines
407 B
JavaScript
import React from "react"
|
|
|
|
export default React.memo(function MorseButtons() {
|
|
return (
|
|
<>
|
|
<div id="morseButton">
|
|
<button className="paddle" id="left"><<br/>,</button>
|
|
<button className="paddle" id="right">><br/>.</button>
|
|
</div>
|
|
<div id="morseButtonText">
|
|
SPACEBAR
|
|
</div>
|
|
</>
|
|
)
|
|
}) |