import * as React from "react"; type Props = { children: React.ReactElement; }; /** * On native platforms the river `ComponentsMap` registers its own initial focus, * so a hook-presented general content screen needs no extra focus wrapper here. * The web counterpart (`index.web.tsx`) recreates the content focus group that * the `River` wrapper would normally provide. */ export const HookContentFocusGroup = ({ children }: Props) => <>{children};