export default ({ problem, onCodeChange, score }) => { const handleTextChange = (e) => { onCodeChange({ code: e.target.value }); }; return (
{problem}
{score == null ? 'Score: -' : `Score: ${score} byte`}