import React from 'react'; import { ErrorBoundary } from 'react-error-boundary'; import ErrorFallback from '../common/ErrorFallback'; import Loading from '../common/Loading'; import MenuPanel from './MenuPanel'; interface DesktopAppProps { pluginId: string; event: kintone.events.AppRecordDetailShowEvent | kintone.events.MobileAppRecordDetailShowEvent; } const DesktopApp: React.FC = (props) => { const { pluginId, event } = props; return ( }> ); }; export default DesktopApp;