File size: 304 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import Sidebar from '../sidebar';
import useClientMenuItems from './hooks/use-client-menu-items';

type Props = {
	path: string;
};

export default function ( { path }: Props ) {
	const menuItems = useClientMenuItems( path );

	return <Sidebar path="" menuItems={ menuItems } withUserProfileFooter />;
}