scrimba
Learn React - Course Youtube
TodoApp
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

TodoApp
AboutCommentsNotes
TodoApp
Expand for more info
App.js
run
preview
console
import React from 'react'

function App() {
return(
<div>
<input type="checkbox" />
<p>Java</p>
</div>
)
}

export default App
Console
index.html
LIVE