Created
April 12, 2024 10:15
-
-
Save axilaris/5954e10e2b7b597815a56030f34feacc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<AppSidebarNav items={navigation()} /> | |
<CSidebarHeader className="border-top"> | |
<CSidebarNav> | |
<CNavItem href="#" onClick={handleLogout}> | |
<CIcon customClassName="nav-icon" icon={cilAccountLogout}style={{marginLeft: unfoldable ? "0px" : "-20px", float: "left"}} /> | |
Logout | |
</CNavItem> | |
</CSidebarNav> | |
</CSidebarHeader> | |
<CSidebarFooter style={{ cursor: 'pointer' }}> | |
<CSidebarToggler | |
onClick={() => { | |
dispatch({ type: 'set', sidebarUnfoldable: !unfoldable }); | |
setSidebarExpand(!sidebarExpand); | |
}} | |
/> | |
</CSidebarFooter> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment