Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 206 Bytes

nesting-level.md

File metadata and controls

9 lines (8 loc) · 206 Bytes

🧵 Keep component nesting level at 1

Example:

<div> <!–– level 0 ––>
    <h1>Component</h1>
    <livewire:profile :user="auth()->user()->uuid" /> <!–– level 1 ––>
</div>