scrimba
Imba Router - Nested routes
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

Imba Router - Nested routes
AboutCommentsNotes
Imba Router - Nested routes
Expand for more info
components
Site.imba
run
preview
console
import 'imba-router'

import {About} from './About'
import {Home} from './Home'

export tag Site
def render
<self>
<nav.main>
<a route-to='/home'> 'Home'
<a route-to='/about'> 'About'
<Home route='/home'>
<About route='/about'>
Console
home
-3:52