Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
demountable
/
wp-content
/
plugins
/
surerank
/
src
/
apps
/
admin-components
:
page-content-wrapper.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
import PageHeader from './page-header'; import { cn } from '@Functions/utils'; const PageContentWrapper = ( { children, title, description, icon, secondaryButton, info_tooltip = null, className, } ) => { if ( ! children ) { return null; } return ( <div className={ cn( 'flex flex-col justify-start-start gap-7 w-full h-full', className ) } > <PageHeader title={ title } description={ description } icon={ icon } secondaryButton={ secondaryButton } info_tooltip={ info_tooltip } /> { children } </div> ); }; export default PageContentWrapper;