tasko/app/(platform)/(clerk)/layout.tsx

8 lines
197 B
TypeScript
Raw Normal View History

2024-02-14 21:30:10 -05:00
const ClerkLayout = ({ children }: { children: React.ReactNode }) => {
2024-02-15 20:49:19 -05:00
return (
<div className='flex h-full items-center justify-center'>{children}</div>
);
};
2024-02-14 21:30:10 -05:00
2024-02-15 20:49:19 -05:00
export default ClerkLayout;