import {
  SystemPageShell as SystemPageShellInner,
  type SystemPageShellProps,
} from './SystemPageShell';
import { HydratedIsland } from '@/components/HydratedIsland';

export type { SystemPageShellProps } from './SystemPageShell';

export function SystemPageShell(props: SystemPageShellProps) {
  return (
    <HydratedIsland>
      <SystemPageShellInner {...props} />
    </HydratedIsland>
  );
}
