mirror of
https://github.com/genemecija/learn-morse-code.git
synced 2025-12-06 07:02:00 +01:00
14 lines
392 B
JavaScript
14 lines
392 B
JavaScript
|
|
import React, { useContext } from "react"
|
||
|
|
import { KeyTypeContext } from "../contexts/keyTypeContext"
|
||
|
|
|
||
|
|
export default React.memo(function MorseButtons() {
|
||
|
|
|
||
|
|
const {keyType} = useContext(KeyTypeContext)
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div id="morseButton">
|
||
|
|
<button className="paddle" id="left"></button>
|
||
|
|
<button className="paddle" id="right"></button>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
})
|