Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions reflex/docs/advanced_onboarding/how-reflex-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@ Under the hood, Reflex apps compile down to a [React](https://react.dev) fronten

The diagram below provides a detailed overview of how a Reflex app works. We'll go through each part in more detail in the following sections.

```python exec
from reflex_image_zoom import image_zoom
```

```python eval
image_zoom(rx.image(src="https://web.reflex-assets.dev/other/architecture.webp"))
rx.el.a(
rx.image(src="https://web.reflex-assets.dev/other/architecture.webp"),
href="https://web.reflex-assets.dev/other/architecture.webp",
target="_blank",
)
```

```python eval
Expand Down
Loading