7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
|
|
import { ReactNode } from 'react';
|
||
|
|
|
||
|
|
// Mobile app layout - renders without header and footer
|
||
|
|
export default function MobileAppLayout({ children }: { children: ReactNode }) {
|
||
|
|
return children;
|
||
|
|
}
|