docs: fix parametrising components section next step line position (#1286)

This commit is contained in:
Antoliny Lee 2025-07-08 01:25:19 +09:00 committed by GitHub
parent 39e9ee0dc3
commit bcc7bac48d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -220,10 +220,6 @@ the parametrized version of the component:
</div>
```
---
Next, you will learn [how to use slots give your components even more flexibility ➡️](./adding_slots.md)
### 5. Add defaults
In our example, we've set the `extra_class` to default to `"text-blue"` by setting it in the
@ -258,3 +254,7 @@ class Calendar(Component):
"extra_class": kwargs["extra_class"], # <--- changed
}
```
---
Next, you will learn [how to use slots give your components even more flexibility ➡️](./adding_slots.md)