- moved grid rendering to feature

- re implemented file loading for order preservation
- added styling for grid
- implemented row selection POC
This commit is contained in:
Chris Kruining 2024-10-07 16:54:45 +02:00
parent 70c15c4094
commit ebd8ff8c1d
10 changed files with 897 additions and 143 deletions

View file

@ -91,7 +91,7 @@ const Item: Component<ItemProps> = (props) => {
return mergeProps(props, {
id,
get children() {
return childItems();
return childItems.toArray();
}
}) as unknown as JSX.Element;
}