10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { type ReactNode } from 'react';
|
|
|
|
interface AppLayoutProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export default ({ children }: AppLayoutProps) => {
|
|
return <>{children}</>;
|
|
};
|