# FocusControl `FocusControl` is a module that exports a selection of helpful utility functions to be used in conjunction with the `ref` from a React Scope, such as `TabbableScope`. A ref from `FocusManager` can also be used instead. ## Example ```jsx const { focusFirst, focusNext, focusPrevious, getNextScope, getPreviousScope, } = FocusControl; function KeyboardFocusMover(props) { const scopeRef = useRef(null); useEffect(() => { const scope = scopeRef.current; if (scope) { // Focus the first tabbable DOM node in my children focusFirst(scope); // Then focus the next chilkd focusNext(scope); } }); return ( {props.children} ); } ``` ## FocusControl API ### `focusFirst` Focus the first node that matches the given scope. ### `focusNext` Focus the next sequential node that matchs the given scope. ### `focusPrevious` Focus the previous sequential node that matchs the given scope. ### `getNextScope` Focus the first node that matches the next sibling scope from the given scope. ### `getPreviousScope` Focus the first node that matches the previous sibling scope from the given scope.