mirror of
https://github.com/borbann-platform/backend-api.git
synced 2025-12-18 20:24:05 +01:00
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
import type React from "react"
|
|
|
|
export default function MapLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="relative">
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|