mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-02 00:28:51 +01:00
20 lines
420 B
JavaScript
20 lines
420 B
JavaScript
import React from 'react';
|
|
import NavLink from './NavLink';
|
|
import LogOutIcon from '../svg/LogOutIcon';
|
|
import ClearConvos from './ClearConvos';
|
|
import DarkMode from './DarkMode';
|
|
import Logout from './Logout';
|
|
|
|
export default function NavLinks() {
|
|
return (
|
|
<>
|
|
<ClearConvos />
|
|
<DarkMode />
|
|
<Logout />
|
|
{/* <NavLink
|
|
svg={LogOutIcon}
|
|
text="Log out"
|
|
/> */}
|
|
</>
|
|
);
|
|
}
|