LibreChat/client/src/components/Nav/NavLinks.jsx

23 lines
591 B
React
Raw Normal View History

2023-02-06 13:27:28 -05:00
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';
2023-02-06 13:27:28 -05:00
2023-03-18 15:59:59 -04:00
export default function NavLinks({ fetch, onSearchSuccess, clearSearch }) {
2023-02-06 13:27:28 -05:00
return (
<>
{/* <SearchBar fetch={fetch} onSuccess={onSearchSuccess} clearSearch={clearSearch}/> */}
<ClearConvos />
<DarkMode />
<Logout />
{/* <NavLink
2023-02-06 13:27:28 -05:00
svg={LogOutIcon}
text="Log out"
/> */}
2023-02-06 13:27:28 -05:00
</>
);
}