import type React from "react"
export default function ObserverLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return <>{children}</>
}
