Spaces:
Runtime error
Runtime error
Remove 'app_port' message since it is the default
Browse files
app.py
CHANGED
|
@@ -5,7 +5,6 @@ word_limit = solara.reactive(10)
|
|
| 5 |
@solara.component
|
| 6 |
def Page():
|
| 7 |
solara.Markdown("#Solara Template")
|
| 8 |
-
solara.Markdown("Remember to add the 'app_port: 7860' to the README.md file")
|
| 9 |
# Calculate word_count within the component to ensure re-execution when reactive variables change.
|
| 10 |
word_count = len(sentence.value.split())
|
| 11 |
solara.SliderInt("Word limit", value=word_limit, min=2, max=20)
|
|
|
|
| 5 |
@solara.component
|
| 6 |
def Page():
|
| 7 |
solara.Markdown("#Solara Template")
|
|
|
|
| 8 |
# Calculate word_count within the component to ensure re-execution when reactive variables change.
|
| 9 |
word_count = len(sentence.value.split())
|
| 10 |
solara.SliderInt("Word limit", value=word_limit, min=2, max=20)
|