Show single record on a page AntD Refine
I have a list page
<List>
<Table {...tableProps} rowKey="id">
<Table.Column/><Table.Column/><Table.Column/><Table.Column/>
</List>
I want when the user clicks on a row, navigate /show/:id, where the information of that row show.
I'm using AntD.
What is the conventional way to do this?
<List>
<Table {...tableProps} rowKey="id">
<Table.Column/><Table.Column/><Table.Column/><Table.Column/>
</List>
I want when the user clicks on a row, navigate /show/:id, where the information of that row show.
I'm using AntD.
What is the conventional way to do this?
