scrimba
React Full Course
Todo App - Phase 1
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

Todo App - Phase 1
by
AboutCommentsNotes
Todo App - Phase 1
by
Expand for more info
App.js
run
preview
console
import React from "react"

function App() {
return (
<div>
<input type="checkbox" />
<p>This is a place holder text</p>
<input type="checkbox" />
<p>This is a place holder text</p>
<input type="checkbox" />
<p>This is a place holder text</p>
<input type="checkbox" />
<p>This is a place holder text</p>
</div>
)
}

export default App
Console
/index.html
LIVE