export function RootContainer(props: { children?: React.ReactNode }) {
  const { children } = props
  return <>{children}</>
}
