mirror of
https://github.com/genemecija/learn-morse-code.git
synced 2026-01-10 10:41:22 +01:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
import React from "react"
|
|
|
|
export default (function ChallengeControls(props) {
|
|
|
|
return (
|
|
<div id="challengeControls">
|
|
<button onClick={props.cancelChallenge}>Exit</button>
|
|
</div>
|
|
)
|
|
}) |