scrimba
Learn Imba
Inline Styles
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
Inline Styles
Expand for more info
index.imba
run
preview
console
tag habit-item
prop name = "Untitled"
prop done = false
<self>
<label>
<input type="checkbox" checked=done>
<div> name


tag habit-group
prop habits = []
<self>
for habit in habits
<habit-item name=habit.name done=habit.done>






imba.mount <habit-group habits=[
{name: "Clean Up", done: true}
{name: "Exercise", done: false}
{name: "Study", done: true}
{name: "Learn Imba", done: false}
]>
Console
/index.html
-2:29