palash-signoz 59f32884d2
Feat(UI): Auth (#1018)
* auth and rbac frontend changes
2022-05-03 15:27:09 +05:30

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;