Submit the code individually in https://classroom.github.com/a/fd5rEEZc
src/App.jsx contains the code from the React Tic-Tac-Toe tutorial. Write some tests in src/App.test.jsx to verify it is working correctly.
You should write 2 tests: 1) to verify a case when X would win the game, and 2) verify a case when O would win.
You are free to modify the application in App.jsx to better support testing
Refer to the documentation for React Testing Library.
Note that you can use the aria-label property of HTML elements to help match an element by role and name: https://testing-library.com/docs/queries/byrole/#api
Refer to the provided tests from Project 1 for additional usage examples.
Note that liberal use of regular expressions are made in Testing Library. /pattern/i will perform case-insensistive matches looking for the string "pattern".