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

8 lines
197 B
TypeScript
Raw Normal View History

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