* feat: add foundation for tooltips * fix: add lang * refactor: remove React import where no longer necessary
18 lines
626 B
TypeScript
18 lines
626 B
TypeScript
import type { NextPage } from 'next';
|
|
|
|
import UserSettings from '../../../../components/UserProfile/UserSettings';
|
|
import UserNotificationSettings from '../../../../components/UserProfile/UserSettings/UserNotificationSettings';
|
|
import UserWebPushSettings from '../../../../components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsWebPush';
|
|
|
|
const WebPushProfileNotificationsPage: NextPage = () => {
|
|
return (
|
|
<UserSettings>
|
|
<UserNotificationSettings>
|
|
<UserWebPushSettings />
|
|
</UserNotificationSettings>
|
|
</UserSettings>
|
|
);
|
|
};
|
|
|
|
export default WebPushProfileNotificationsPage;
|