use-is-sidebar.ts 259 B

12345678910111213
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { useContext } from 'react';
  6. import { IsSidebarContext } from '../context';
  7. export function useIsSidebar() {
  8. return useContext(IsSidebarContext);
  9. }