import type { PropsWithChildren } from 'react'; import type { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps'; interface OneColumnTabProps extends PConnProps { // If any, enter additional props that only exist on this component } export default function OneColumnTab(props: PropsWithChildren) { const { children } = props; return
{children}
; }