소스 검색

Update comments in template apps (#2370)

Masen Furer 1 년 전
부모
커밋
7cec7feb63
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      reflex/.templates/apps/blank/code/blank.py
  2. 1 1
      reflex/.templates/apps/demo/code/demo.py

+ 1 - 1
reflex/.templates/apps/blank/code/blank.py

@@ -39,6 +39,6 @@ def index() -> rx.Component:
     )
     )
 
 
 
 
-# Add state and page to the app.
+# Create app instance and add index page.
 app = rx.App()
 app = rx.App()
 app.add_page(index)
 app.add_page(index)

+ 1 - 1
reflex/.templates/apps/demo/code/demo.py

@@ -118,5 +118,5 @@ def chatapp() -> rx.Component:
     return chatapp_page()
     return chatapp_page()
 
 
 
 
-# Add state and page to the app.
+# Create the app.
 app = rx.App(style=base_style)
 app = rx.App(style=base_style)