Skip to content
W WRNexusJS
layout component

StickyLayout

Reusable sticky layout component.

@wrnexus/ui 0.2.671 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StickyLayout />

Legacy mount name: data-component="StickyLayout".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/StickyLayout.wrn

component StickyLayout {
  props {
    class = ""
  }
  view {
        <div class="wire-sticky-layout {class}">
        <slot />
        </div>
    }
}