mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
5 lines
140 B
TypeScript
5 lines
140 B
TypeScript
import { ReactNode } from 'react';
|
|
export default function HotelLayout({ children }: { children: ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|