Loading...
;\n};\n","/* eslint-disable react/destructuring-assignment, no-console */\nimport React, { Component } from 'react';\n\nimport ErrorPage from './ErrorPage';\n\nclass ErrorBoundary extends Component {\n constructor(props) {\n super(props);\n this.state = { hasError: false };\n }\n\n static getDerivedStateFromError(error, errorInfo) {\n return { hasError: true, error, errorInfo };\n }\n\n render() {\n if (this.state.hasError) {\n returnLoading...
;\n};\n","import React from 'react';\n\nimport Box from '@mui/material/Box';\nimport { WidthProvider, Responsive } from 'react-grid-layout';\n\nconst ResponsiveReactGridLayout = WidthProvider(Responsive);\n\nconst StyledGridLayout = (props) => (\n