Tic-Tac-Toe.Game.mp4
Tic Tac Toe game using React.js! React.js is a powerful JavaScript library for building user interfaces, and it's an excellent choice for creating interactive and dynamic web applications. A simple Tic Tac Toe game.
npm install -D tailwindcss
npx tailwindcss init
Add a tailwind.config.js file
@type {import('tailwindcss').Config}
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}
Add to input css
@tailwind base;
@tailwind components;
@tailwind utilities;