2020-02-04 22:38:22 +01:00
|
|
|
import React from "react"
|
|
|
|
|
|
|
|
|
|
export default (function ChallengeControls(props) {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div id="challengeControls">
|
2020-02-10 09:26:04 +01:00
|
|
|
<button onClick={props.cancelChallenge}>Exit</button>
|
2020-02-04 22:38:22 +01:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
})
|