import React, { ReactNode } from 'react'; import { Box } from './primitives/Box'; import { Surface } from './primitives/Surface'; export interface ErrorPageContainerProps { children: ReactNode; } export const ErrorPageContainer = ({ children }: ErrorPageContainerProps) => { return ( {children} ); };