import React from 'react'; interface AppEmbedProps { width?: string | number; height?: string | number; } const AppEmbed: React.FC = ({ width = '100%', height = '100vh', }) => { return (
); }; export default AppEmbed;