Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

Commit 0c6c510

Browse files
committed
Merge branch 'main' of https://github.com/reflex-dev/reflex-web into carlos/replace-some-docs
2 parents 3137041 + 31795b5 commit 0c6c510

21 files changed

Lines changed: 42 additions & 33 deletions

blog/build-python-admin-panels-internal-tools-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ faq: [
2020
```python exec
2121
import reflex as rx
2222
from pcweb.constants import REFLEX_ASSETS_CDN
23-
from reflex_image_zoom import image_zoom
23+
from pcweb.components.image_zoom import image_zoom
2424
```
2525

2626
Most Python developers hit the same wall when [building internal tools](https://blog.tooljet.com/build-internal-apps-without-frontend-developers/). You finish the backend logic, then face rebuilding the interface in a JavaScript framework you'd rather avoid. Now you can [build approval workflows in Python](https://reflex.dev/) and skip the context switching. We'll show you how to create complete admin panels with forms, tables, authentication, and business process automation using Python alone.

blog/custom-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ And use it right away like any other Reflex component.
4949
```python demo exec
5050
import reflex as rx
5151
from pcweb.constants import REFLEX_ASSETS_CDN
52-
from reflex_image_zoom import image_zoom
52+
from pcweb.components.image_zoom import image_zoom
5353

5454
def zoom():
5555
src = f"{REFLEX_ASSETS_CDN}blog/custom_components.webp"

blog/enterprise-ready-ai-app-builder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ faq: [
2020

2121
```python exec
2222
import reflex as rx
23-
from reflex_image_zoom import image_zoom
23+
from pcweb.components.image_zoom import image_zoom
2424
from pcweb.constants import REFLEX_ASSETS_CDN
2525
```
2626

blog/how-to-build-python-web-app-complete-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ faq: [
1919

2020
```python exec
2121
import reflex as rx
22-
from reflex_image_zoom import image_zoom
22+
from pcweb.components.image_zoom import image_zoom
2323
from pcweb.constants import REFLEX_ASSETS_CDN
2424
```
2525

blog/internal-tool-builders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ faq: [
1717
```python exec
1818
import reflex as rx
1919
from pcweb.constants import REFLEX_ASSETS_CDN
20-
from reflex_image_zoom import image_zoom
20+
from pcweb.components.image_zoom import image_zoom
2121
```
2222

2323

blog/on-premises-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ faq: [
4040
import reflex as rx
4141
import reflex_ui as ui
4242
from pcweb import pages, constants
43-
from reflex_image_zoom import image_zoom
43+
from pcweb.components.image_zoom import image_zoom
4444
from reflex_ui.blocks.demo_form import demo_form_dialog
4545
```
4646

blog/python-comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ faq: [
1919
```python exec
2020
import reflex as rx
2121
from pcweb.constants import REFLEX_ASSETS_CDN
22-
from reflex_image_zoom import image_zoom
22+
from pcweb.components.image_zoom import image_zoom
2323
```
2424

2525

blog/reflex-architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Under the hood, Reflex apps compile down to a [React](https://react.dev) fronten
9595
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.
9696

9797
```python exec
98-
from reflex_image_zoom import image_zoom
98+
from pcweb.components.image_zoom import image_zoom
9999
```
100100

101101
```python eval

blog/reflex-dash.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ meta: [
1818
```python exec
1919
import reflex as rx
2020
from pcweb.constants import REFLEX_ASSETS_CDN
21-
from reflex_image_zoom import image_zoom
21+
from pcweb.components.image_zoom import image_zoom
2222
```
2323

2424

blog/reflex-jupyter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ for feature, importance in zip(features, rf.feature_importances_):
9595
```python exec
9696
import reflex as rx
9797
from pcweb.constants import REFLEX_ASSETS_CDN
98-
from reflex_image_zoom import image_zoom
98+
from pcweb.components.image_zoom import image_zoom
9999

100100
def render_image():
101101
return rx.el.div(

0 commit comments

Comments
 (0)