mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 02:40:14 +01:00
21 lines
494 B
JavaScript
21 lines
494 B
JavaScript
import SearchBar from './SearchBar';
|
|
import ClearConvos from './ClearConvos';
|
|
import DarkMode from './DarkMode';
|
|
import Logout from './Logout';
|
|
import ExportConversation from './ExportConversation';
|
|
|
|
export default function NavLinks({ clearSearch, isSearchEnabled }) {
|
|
return (
|
|
<>
|
|
{!!isSearchEnabled && (
|
|
<SearchBar
|
|
clearSearch={clearSearch}
|
|
/>
|
|
)}
|
|
<ExportConversation />
|
|
<DarkMode />
|
|
<ClearConvos />
|
|
<Logout />
|
|
</>
|
|
);
|
|
}
|