import React from 'react'; export const Customizer = React.forwardRef((props, ref) => { return ( ); }); export const CenteredSidebar = React.forwardRef( (props, ref) => { return ( ); }, ); export const RightSidebar = React.forwardRef( (props, ref) => { return ( ); }, ); export const StretchedSidebar = React.forwardRef( (props, ref) => { return ( ); }, ); export const ContainedSidebar = React.forwardRef( (props, ref) => { return ( ); }, ); export const LeftSidebar = React.forwardRef( (props, ref) => { return ( ); }, ); export const HeaderLeft = React.forwardRef((props, ref) => { return ( ); }); export const HeaderCenter = React.forwardRef( (props, ref) => { return ( ); }, ); export const HeaderRight = React.forwardRef( (props, ref) => { return ( ); }, );