2023-03-18 01:40:49 -04:00
|
|
|
import SearchBar from './SearchBar';
|
2023-02-08 09:15:47 -05:00
|
|
|
import ClearConvos from './ClearConvos';
|
|
|
|
|
import DarkMode from './DarkMode';
|
2023-03-14 01:24:43 +08:00
|
|
|
import Logout from './Logout';
|
2023-04-06 02:06:39 +08:00
|
|
|
import ExportConversation from './ExportConversation';
|
2023-02-06 13:27:28 -05:00
|
|
|
|
2023-04-06 05:47:37 -07:00
|
|
|
export default function NavLinks({ clearSearch, isSearchEnabled }) {
|
2023-02-06 13:27:28 -05:00
|
|
|
return (
|
|
|
|
|
<>
|
2023-03-28 20:36:21 +08:00
|
|
|
{!!isSearchEnabled && (
|
|
|
|
|
<SearchBar
|
|
|
|
|
clearSearch={clearSearch}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
2023-04-06 02:06:39 +08:00
|
|
|
<ExportConversation />
|
2023-02-08 09:15:47 -05:00
|
|
|
<DarkMode />
|
2023-03-22 18:26:29 -04:00
|
|
|
<ClearConvos />
|
2023-03-14 01:24:43 +08:00
|
|
|
<Logout />
|
2023-02-06 13:27:28 -05:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|