First Working version. I can add table

This commit is contained in:
2025-05-10 16:55:52 +02:00
parent b708ef2c46
commit 2daff83e67
157 changed files with 17282 additions and 12 deletions

15
src/pages/another_grid.py Normal file
View File

@@ -0,0 +1,15 @@
import pandas as pd
from components.datagrid.DataGrid import DataGrid
data = {
'Name': ['Kodjo', 'Kokoe', 'Aba', 'Koffi'],
'Age': [49, 51, 46, 51],
'City': ['Rosny', 'Nangis', 'Rosny', 'Abidjan']
}
df = pd.DataFrame(data)
def get_datagrid2():
return DataGrid(df, id="another grid")