6 lines
192 B
TypeScript
6 lines
192 B
TypeScript
|
|
import { PropsWithChildren } from "react";
|
||
|
|
|
||
|
|
export const AppContent = ({ children }: PropsWithChildren) => {
|
||
|
|
return <div className='flex flex-1 flex-col gap-4 p-4 pt-0'>{children}</div>;
|
||
|
|
};
|