mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-01 01:13:38 +00:00
9 lines
No EOL
224 B
TypeScript
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; |