import React from 'react';
import '../css/App.css';
import useStraightKey from '../hooks/useStraightKey';
import GameClock from '../components/GameClock'
import MorseBufferDisplay from '../components/MorseBufferDisplay'
import MorseHistory from '../components/MorseHistory'
function TrainingMode() {
const {morseCharBuffer, morseWords} = useStraightKey('timed')
console.log('TrainingMode.js rendered')
return (
<>
>
);
}
export default React.memo(TrainingMode);