error-empty page after execution
import solara
@solara.component
def Page():
# Define a reactive variable
value = solara.use_reactive(50)
# Define the layout and widgets
with solara.Column():
solara.SliderInt("Adjust the value", value=value, min=0, max=100)
solara.Text(f"The current value is: {value.value}")
tried to run this code in vscode
PS C:\Users\ZG656CG\OneDrive - EY\Desktop\jj> solara run sol.py
@solara.component
def Page():
# Define a reactive variable
value = solara.use_reactive(50)
# Define the layout and widgets
with solara.Column():
solara.SliderInt("Adjust the value", value=value, min=0, max=100)
solara.Text(f"The current value is: {value.value}")
tried to run this code in vscode
PS C:\Users\ZG656CG\OneDrive - EY\Desktop\jj> solara run sol.py

