tasko/app/(platform)/(clerk)/layout.tsx
2024-02-14 21:30:10 -05:00

9 lines
No EOL
224 B
TypeScript

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