scrimba
Tic Tac Toe
Scaffolding Components
Go Pro!

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
Scaffolding Components
Expand for more info
App.js
run
preview
console
import React from 'react';

const App = () => <div>Tic Tac Toe</div>;

export default App;
Console
/index.html
-3:01