mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 04:10:15 +01:00
22 lines
591 B
JavaScript
22 lines
591 B
JavaScript
import React from 'react';
|
|
import NavLink from './NavLink';
|
|
import LogOutIcon from '../svg/LogOutIcon';
|
|
import SearchBar from './SearchBar';
|
|
import ClearConvos from './ClearConvos';
|
|
import DarkMode from './DarkMode';
|
|
import Logout from './Logout';
|
|
|
|
export default function NavLinks({ fetch, onSearchSuccess, clearSearch }) {
|
|
return (
|
|
<>
|
|
{/* <SearchBar fetch={fetch} onSuccess={onSearchSuccess} clearSearch={clearSearch}/> */}
|
|
<ClearConvos />
|
|
<DarkMode />
|
|
<Logout />
|
|
{/* <NavLink
|
|
svg={LogOutIcon}
|
|
text="Log out"
|
|
/> */}
|
|
</>
|
|
);
|
|
}
|