17 lines
250 B
Markdown
17 lines
250 B
Markdown
---
|
|
components:
|
|
- rx.radix.text.strong
|
|
---
|
|
|
|
```python exec
|
|
import reflex as rx
|
|
```
|
|
|
|
# Strong
|
|
|
|
Marks text to signify strong importance.
|
|
|
|
```python demo
|
|
rx.text("The most important thing to remember is, ", rx.text.strong("stay positive"), ".")
|
|
```
|