mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 05:02:11 +00:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
const AuthLayout = ({ children }: { children: React.ReactNode }) => {
|
|
return (
|
|
<main className="w-full flex items-center justify-center">{children}</main>
|
|
)
|
|
}
|
|
|
|
export default AuthLayout
|