docs: split events reference across modules (#10711)

* docs: split events reference across modules

* add lint exceptions
This commit is contained in:
Shahed Nasser
2024-12-24 09:54:51 +02:00
committed by GitHub
parent a4335f2a47
commit fd1afa8bc9
38 changed files with 1647 additions and 1301 deletions

View File

@@ -281,7 +281,7 @@ const CustomPage = () => {
const { data } = useQuery({
queryFn: () => sdk.admin.product.list({
limit,
offset
offset,
}),
queryKey: [["products", limit, offset]],
})
@@ -325,12 +325,12 @@ return (
columns={[
{
key: "id",
label: "ID"
label: "ID",
},
{
key: "title",
label: "Title"
}
label: "Title",
},
]}
data={data.products as any}
pageSize={data.limit}