LegalPageShell
Reusable legal page shell component.
Usage
Components are auto-discovered. Use the component directly in any .wrn view:
<LegalPageShell />Legacy mount name: data-component="LegalPageShell".
Props and attributes
| Prop | Type | Requirement | Default |
|---|---|---|---|
class | string | Optional | "" |
Slots
navigationdefault
Events
This component does not declare a custom event.
Source contract
Installed source: components/LegalPageShell.wrn
component LegalPageShell {
props {
class = ""
}
view {
<div class="wire-page-shell wire-page-shell--legal {class}">
<aside class="wire-page-shell__aside">
<slot name="navigation" />
</aside>
<main class="wire-page-shell__main">
<slot />
</main>
</div>
}
}