Spaces:
Runtime error
Runtime error
alonsosilva
commited on
Commit
•
07986a8
1
Parent(s):
82d2226
Remove message about 'app_port' since it is the default
Browse files
app.py
CHANGED
@@ -9,7 +9,6 @@ word_limit = solara.reactive(10)
|
|
9 |
def Page():
|
10 |
with solara.Column(margin=10):
|
11 |
solara.Markdown("#Solara Template")
|
12 |
-
solara.Info("Remember to add the 'app_port: 7860' to the README.md file")
|
13 |
# Calculate word_count within the component to ensure re-execution when reactive variables change.
|
14 |
word_count = len(sentence.value.split())
|
15 |
|
|
|
9 |
def Page():
|
10 |
with solara.Column(margin=10):
|
11 |
solara.Markdown("#Solara Template")
|
|
|
12 |
# Calculate word_count within the component to ensure re-execution when reactive variables change.
|
13 |
word_count = len(sentence.value.split())
|
14 |
|