(null);
return (
<>
This story uses a Stack plus an EditDialog
}
onClick={(ev) => {
editDialog.current?.openAddDialog();
}}
>
Hinzufügen
(
{
editDialog.current?.openEditDialog(String(row.id));
}}
>
),
},
]}
/>
edit....
{({ selectedId, selectionMode }) => (
<>
{selectionMode && (
{(row, { selectionMode: sm }) => }
)}
>
)}
>
);
}
storiesOf("comet-admin", module)
.addDecorator(StoryRouter())
.addDecorator(apolloStoryDecorator())
.add("Table Stack+EditDialog", () => );