Here are some tests in the Input component.
In the beforeEach(), we replace React's useState with our fake function (jest.fn()). We will return an array with an empty string and our mockSetCurrentGuess. The "mockSetCurrentGuess" will let us see when useState is called. The empty string represents the arguments that useState() will be called with. In these tests, we want to see if useState() was called and if it was called with the correct arguments.