import React from "react";

export type ComponentWrapperProps = {
  children: any;
  nextFocusUp?: any;
  groupId?: string;
  id: string;
};

export const ComponentFocusableWrapperView = (props: ComponentWrapperProps) => {
  return (
    // @ts-ignore
    <div id={props.id}>{props.children(null, null)}</div>
  );
};
