import type { PropsWithChildren } from 'react';
import React from 'react';

export default function NestedLayout({ children }: PropsWithChildren<{}>) {
  return <>{children}</>;
}
