/** * Internal dependencies */ import { designWithAiStateMachineContext } from '../types'; export const LookAndFeel = ( { sendEvent, context, }: { sendEvent: ( event: { type: 'LOOK_AND_FEEL_COMPLETE' } ) => void; context: designWithAiStateMachineContext; } ) => { return (

Look and Feel

{ JSON.stringify( context ) }
); };