2023-08-18 05:30:25 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { CustomizeStoreComponent } from '../types';
|
|
|
|
|
|
|
|
export type events = { type: 'THEME_SUGGESTED' };
|
|
|
|
export const DesignWithAi: CustomizeStoreComponent = ( { sendEvent } ) => {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<h1>Design with AI</h1>
|
|
|
|
<button onClick={ () => sendEvent( { type: 'THEME_SUGGESTED' } ) }>
|
2023-08-28 01:28:05 +00:00
|
|
|
Assembler Hub
|
2023-08-18 05:30:25 +00:00
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|