Open MZabolotnev opened 2 years ago
Get the latest updates from Academy's repo by instruction;
To your homework folder add a folder named 10-components
10-components
Add your files into this folder:
homeworks/elon.musk_spacex2021/10-components
Create a tic-tac-toe game according to the design
A set of colors - on your choice, you can choose a palette to your liking.
The state of the gaming field should be stored in an array of arrays like:
const state = [ [0, 0, 1], [0, 1, 2], [0, 0, 1], ];
Deadline
First of all
Get the latest updates from Academy's repo by instruction;
To your homework folder add a folder named
10-components
Add your files into this folder:
Task:
Create a tic-tac-toe game according to the design
A set of colors - on your choice, you can choose a palette to your liking.
The state of the gaming field should be stored in an array of arrays like:
Advanced Task