11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
import { ErrorBoundary } from '../../components';
|
|
import { CloudComponent } from '../../components/CloudComponent';
|
|
|
|
export function CloudPage() {
|
|
return (
|
|
<ErrorBoundary>
|
|
<CloudComponent />
|
|
</ErrorBoundary>
|
|
);
|
|
}
|