mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
20 lines
475 B
TypeScript
20 lines
475 B
TypeScript
|
|
import { Space, Typography } from 'antd';
|
||
|
|
import React from 'react';
|
||
|
|
import { useTranslation } from 'react-i18next';
|
||
|
|
|
||
|
|
import Password from './Password';
|
||
|
|
import UpdateName from './UpdateName';
|
||
|
|
|
||
|
|
function MySettings(): JSX.Element {
|
||
|
|
const { t } = useTranslation(['routes']);
|
||
|
|
return (
|
||
|
|
<Space direction="vertical" size="large">
|
||
|
|
<Typography.Title level={2}>{t('my_settings')}</Typography.Title>
|
||
|
|
<UpdateName />
|
||
|
|
<Password />
|
||
|
|
</Space>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default MySettings;
|