mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 17:03:38 +00:00
7 lines
197 B
TypeScript
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;
|