11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import { ErrorBoundary } from '../../components';
|
|
import { CentralComponent } from '../../components/CentralComponent';
|
|
|
|
export function CentralPage() {
|
|
return (
|
|
<ErrorBoundary>
|
|
<CentralComponent />
|
|
</ErrorBoundary>
|
|
);
|
|
}
|