2023-08-29 06:00:54 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { ApiCallLoader } from '../pages';
|
|
|
|
import { WithCustomizeYourStoreLayout } from './WithCustomizeYourStoreLayout';
|
|
|
|
|
2023-09-12 02:30:54 +00:00
|
|
|
export const ApiCallLoaderPage = () => <ApiCallLoader />;
|
2023-08-29 06:00:54 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'WooCommerce Admin/Application/Customize Store/Design with AI/API Call Loader',
|
|
|
|
component: ApiCallLoader,
|
|
|
|
decorators: [ WithCustomizeYourStoreLayout ],
|
|
|
|
};
|