File size: 206 Bytes
8274eff
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import solara
import pandas as pd
import plotly

df = plotly.data.iris()

@solara.component
def Page():
    solara.DataFrame(df, items_per_page=5)

# Run the Solara app
if __name__ == "__main__":
    Page()