1 viewer
Back to Components
Component · Navigation

Router

Local in-view route switcher.

Category
Navigation
Slots
4
States
1
Writer
Shared
cre8.primitive.router

Preview

Live renderShared SSR + WASM writers
Active route panel content inside client Router.
<Router defaultRoute="/overview" id="module-router">
  <Route label="Overview" path="/overview">
    <Text text="Active route panel content inside client Router." />
  </Route>
  <Route label="Telemetry" path="/telemetry">
    <Text text="Secondary telemetry route content." />
  </Route>
</Router>

Anatomy

The named parts of the rendered markup. Recipes style these hooks, and every renderer keeps them stable.

SlotDOM class
root.primitive-router
nav—
link—
content—
4 rows

States and platforms

The states the contract publishes, the platforms it declares, and the style recipes that dress it.

States
active
Platforms
web
Recipes
unstyledruntime-console

Renderers

Shared writer
Router renders through the one writer the server and the WASM DOM share, so both emit the same markup.

Every tag in the example above renders through a shared writer.

Declared adapters. A status is the manifest's declaration, not a measured parity result.

TargetRendererStatus
webreactexperimental
1 row

Accessibility

Semantic structure must stay available without visual styling.

  • Expose meaningful names for interactive controls.
  • Keep keyboard and pointer behavior equivalent where the platform supports it.
  • Publish state with native semantics and data attributes where the adapter supports them.