MastersAcademy / frontend-course-2021

Репозиторій з курсу «Advanced Front-end» проекту Masters Academy
MIT License
5 stars 29 forks source link

Homework 10 - Angular components #237

Open MZabolotnev opened 2 years ago

MZabolotnev commented 2 years ago

Deadline

First of all

  1. Get the latest updates from Academy's repo by instruction;

  2. To your homework folder add a folder named 10-components

  3. Add your files into this folder:

homeworks/elon.musk_spacex2021/10-components

Task:

  1. Create a tic-tac-toe game according to the design

  2. A set of colors - on your choice, you can choose a palette to your liking.

  3. 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],
];
  1. Mandatory requirements:
  1. Page should be responsive

Advanced Task