2023-08-29 06:00:54 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { designWithAiStateMachineContext } from '../types';
|
|
|
|
import { ToneOfVoice } from '../pages';
|
|
|
|
import { WithCustomizeYourStoreLayout } from './WithCustomizeYourStoreLayout';
|
|
|
|
|
|
|
|
export const ToneOfVoicePage = () => (
|
|
|
|
<ToneOfVoice
|
2023-09-12 02:30:54 +00:00
|
|
|
context={
|
|
|
|
{
|
|
|
|
toneOfVoice: {
|
|
|
|
choice: '',
|
|
|
|
},
|
|
|
|
} as designWithAiStateMachineContext
|
|
|
|
}
|
2023-08-29 06:00:54 +00:00
|
|
|
sendEvent={ () => {} }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'WooCommerce Admin/Application/Customize Store/Design with AI/Tone of Voice',
|
|
|
|
component: ToneOfVoice,
|
|
|
|
decorators: [ WithCustomizeYourStoreLayout ],
|
|
|
|
};
|