in studio/hooks/use-sider-width.ts [20:32]
export function useSiderWidth() {
const layoutStore = useLayoutStore()
const getSiderWidth = () => layoutStore.getSiderWidth
const setSiderWidth = (siderWidth: number) => {
layoutStore.setSiderWidth(siderWidth)
}
return {
toggleSider: layoutStore.toggleSider,
setSiderWidth,
getSiderWidth
}
}