import { NotFound as NotFoundInner, type NotFoundProps } from './NotFound';
import { HydratedIsland } from '@/components/HydratedIsland';

export type { NotFoundProps } from './NotFound';

export function NotFound(props: NotFoundProps) {
  return (
    <HydratedIsland>
      <NotFoundInner {...props} />
    </HydratedIsland>
  );
}
