Customer:
{data?.customer?.first_name} {data?.customer?.last_name} -{" "}
{data?.customer?.email}
)
}
const meta: Meta = {
title: "Customers",
argTypes: {
showHookData: {
name: "Show hook data",
description:
"Whether or not story should display JSON of data returned from hook",
control: {
type: "boolean",
},
defaultValue: true,
},
},
parameters: {
controls: { expanded: true },
},
}
export default meta
export const ListOrders = (args: { showHookData: boolean; id: string }) => (