tasko/app/(platform)/(clerk)/layout.tsx
2024-02-15 20:49:19 -05:00

7 lines
197 B
TypeScript

const ClerkLayout = ({ children }: { children: React.ReactNode }) => {
return (
<div className='flex h-full items-center justify-center'>{children}</div>
);
};
export default ClerkLayout;