19 lines
598 B
TypeScript
19 lines
598 B
TypeScript
export const useRegisteredChannels = () => {
|
|
// TODO: call API here to get data.
|
|
// The following are just dummy data for testing now.
|
|
return {
|
|
loading: false,
|
|
data: [
|
|
{
|
|
name: 'Google Listings and Ads',
|
|
description:
|
|
'Get in front of shoppers and drive traffic so you can grow your business with Smart Shopping Campaigns and free listings.',
|
|
icon: 'https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/google.svg',
|
|
isSetupCompleted: true,
|
|
setupUrl: 'www.google.com/setup',
|
|
manageUrl: 'www.google.com/manage',
|
|
},
|
|
],
|
|
};
|
|
};
|