File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ import pandas as pd
1111
1212import reflex_enterprise as rxe
1313
14- df = pd.read_json(" https://www.ag-grid.com/example-assets/olympic-winners.json" )
14+ # Olympic winners data (originally from https://www.ag-grid.com/example-assets/olympic-winners.json)
15+ df = pd.read_json(" data/olympic-winners.json" )
1516
1617row_data = df.to_dict(" records" )
1718
Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ import reflex as rx
2020
2121import reflex_enterprise as rxe
2222
23- df = pd.read_json(" https://www.ag-grid.com/example-assets/olympic-winners.json" )
23+ # Olympic winners data (originally from https://www.ag-grid.com/example-assets/olympic-winners.json)
24+ df = pd.read_json(" data/olympic-winners.json" )
2425
2526def pivot_page ():
2627 return rxe.ag_grid(
You can’t perform that action at this time.
0 commit comments