mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 01:10:14 +01:00
* feat: Beta features tab in Settings and LaTeX Parsing toggle * feat: LaTex parsing with spec
23 lines
698 B
TypeScript
23 lines
698 B
TypeScript
import React from 'react';
|
|
import * as Tabs from '@radix-ui/react-tabs';
|
|
import { SettingsTabValues } from 'librechat-data-provider';
|
|
import Avatar from './Avatar';
|
|
|
|
function Account() {
|
|
return (
|
|
<Tabs.Content
|
|
value={SettingsTabValues.ACCOUNT}
|
|
role="tabpanel"
|
|
className="w-full md:min-h-[300px]"
|
|
>
|
|
<div className="flex flex-col gap-3 text-sm text-gray-600 dark:text-gray-300">
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700">
|
|
<Avatar />
|
|
</div>
|
|
</div>
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700"></div>
|
|
</Tabs.Content>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Account);
|