mirror of
https://github.com/genemecija/learn-morse-code.git
synced 2025-12-06 07:02:00 +01:00
11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
|
|
import React from "react"
|
||
|
|
|
||
|
|
export default React.memo(function Info() {
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div id="info">
|
||
|
|
<h2>Info</h2>
|
||
|
|
<p>This is my info section. It will contain information morse code, e.g. how long dits, dahs, and spacing is.</p>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
})
|