Files
requestarr/src/pages/profile/settings/notifications/telegram.tsx
Ryan Cohen 16545eec22 feat: tooltip foundation (#2950)
* feat: add foundation for tooltips

* fix: add lang

* refactor: remove React import where no longer necessary
2022-08-19 19:35:50 +09:00

18 lines
611 B
TypeScript

import type { NextPage } from 'next';
import UserSettings from '../../../../components/UserProfile/UserSettings';
import UserNotificationSettings from '../../../../components/UserProfile/UserSettings/UserNotificationSettings';
import UserNotificationsTelegram from '../../../../components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsTelegram';
const NotificationsPage: NextPage = () => {
return (
<UserSettings>
<UserNotificationSettings>
<UserNotificationsTelegram />
</UserNotificationSettings>
</UserSettings>
);
};
export default NotificationsPage;