mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 15:19:10 +02:00
24 lines
1 KiB
Python
24 lines
1 KiB
Python
from prefab_ui.app import PrefabApp
|
|
from prefab_ui.components import Column, DataTable, DataTableColumn
|
|
|
|
employees = [
|
|
{"name": "Alice Chen", "role": "Staff Engineer", "dept": "Platform"},
|
|
{"name": "Bob Martinez", "role": "Lead Designer", "dept": "Design"},
|
|
{"name": "Carol Johnson", "role": "Senior Engineer", "dept": "Platform"},
|
|
{"name": "David Kim", "role": "Product Manager", "dept": "Product"},
|
|
{"name": "Eva Mueller", "role": "Engineer", "dept": "Platform"},
|
|
{"name": "Frank Lee", "role": "Data Scientist", "dept": "ML"},
|
|
{"name": "Grace Park", "role": "Eng Manager", "dept": "Platform"},
|
|
]
|
|
|
|
with PrefabApp() as app:
|
|
with Column(gap=4, css_class="p-6"):
|
|
DataTable(
|
|
columns=[
|
|
DataTableColumn(key="name", header="Name", sortable=True),
|
|
DataTableColumn(key="role", header="Role", sortable=True),
|
|
DataTableColumn(key="dept", header="Dept", sortable=True),
|
|
],
|
|
rows=employees,
|
|
search=True,
|
|
)
|