Comment ça fonctionne
Plateforme
Étude de cas
Agents-IA
Contactez-nous
Prendre un appel
import React from 'react'; interface AppEmbedProps { width?: string | number; height?: string | number; } const AppEmbed: React.FC
= ({ width = '100%', height = '100vh', }) => { return (
); }; export default AppEmbed;