Files
PHANTOM/web/src/app/hotel/layout.tsx

5 lines
140 B
TypeScript

import { ReactNode } from 'react';
export default function HotelLayout({ children }: { children: ReactNode }) {
return <>{children}</>;
}