Remove app.compile() from templates (#2327)

This commit is contained in:
Masen Furer 2023-12-21 10:49:30 -07:00 committed by GitHub
parent 42bcea7631
commit 1289182f2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 3 deletions

View File

@ -42,4 +42,3 @@ def index() -> rx.Component:
# Add state and page to the app.
app = rx.App()
app.add_page(index)
app.compile()

View File

@ -120,4 +120,3 @@ def chatapp() -> rx.Component:
# Add state and page to the app.
app = rx.App(style=base_style)
app.compile()

View File

@ -9,4 +9,3 @@ import reflex as rx
# Create the app and compile it.
app = rx.App(style=styles.base_style)
app.compile()