import BABox from "./BABox" import BAScreenHeader from "./BAScreenHeader" type propsType = { title: string, children: any, extraTitle?: any, headerOptions?: { displayField: () => void, isHide?: boolean }[], disableBack?: boolean, } export default function BAScreenWrapper(props: propsType) { const { title, extraTitle, headerOptions, children, disableBack } = props return <> {children} }