/* * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors * * SPDX-License-Identifier: EPL-2.0 */ import Stack from '@mui/material/Stack'; import { Suspense, lazy } from 'react'; import Loading from '../Loading'; const TableArea = lazy(() => import('./TableArea')); export default function TablePane(): JSX.Element { return ( }> ); }