UNPKG

@atlaskit/page-layout

Version:

A collection of components which let you compose an application's page layout.

12 lines 359 B
import { useContext } from 'react'; import { SidebarResizeContext } from './sidebar-resize-context'; /** * @deprecated `@atlaskit/page-layout` is deprecated. Use `@atlaskit/navigation-system` instead. */ export const usePageLayoutResize = () => { const { setLeftSidebarState, ...context } = useContext(SidebarResizeContext); return context; };