* feat: added implementation for new sidebar * test: fixed test cases * refactor: fixed naming convention and combine useeffects * refactor: improved sidebar UI and renamed sidebar flag * refactor: remove additional states * refactor: fixed UI and logic related issue * refactor: simplified condition * refactor: toggle sidebar action * refactor: fixed toggle issues * refactor: back arrow component * refactor: changed useeffect position --------- Co-authored-by: Awais Ansari <awais.ansari63@gmail.com>
6 lines
108 B
JavaScript
6 lines
108 B
JavaScript
import React from 'react';
|
|
|
|
const SidebarContext = React.createContext({});
|
|
|
|
export default SidebarContext;
|