// Copyright 2017-2026 @pezkuwi/app-runtime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@pezkuwi/react-components/types'; import React, { useRef } from 'react'; import { Route, Routes } from 'react-router'; import { Tabs } from '@pezkuwi/react-components'; import Runtime from './Runtime/index.js'; import { useTranslation } from './translate.js'; function RuntimeApp ({ basePath }: Props): React.ReactElement { const { t } = useTranslation(); const itemsRef = useRef([ { isRoot: true, name: 'runtime', text: t('Calls') } ]); return (
} index />
); } export default React.memo(RuntimeApp);