scrimba
Tic Tac Toe
Square Styling
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Square Styling
Expand for more info
components
Square.js
run
preview
console
import React from 'react';

const Square = ({ value, onClick }) => (
<button onClick={onClick}>
{value}
</button>
);

export default Square;
Console
/index.html
-2:32