scrimba
Imba Router - Parameters
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 - Parameters
AboutCommentsNotes
Imba Router - Parameters
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'
<a route-to='/about'> 'About'
<a route-to='/stuff'> 'Stuff'
<Home route='/'>
<About route='/about'>
<About route='/stuff'>
Console
about
-4:16