17 lines
483 B
TypeScript
17 lines
483 B
TypeScript
import React from 'react';
|
|
import { NotificationsForm } from './notifications-form';
|
|
|
|
export default function SettingsNotificationsPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h2 className="text-lg font-medium">Notifications</h2>
|
|
<p className="text-sm text-gray-500">
|
|
Configure how you receive notifications.
|
|
</p>
|
|
</div>
|
|
<div className="border-t border-gray-200 my-4" />
|
|
<NotificationsForm />
|
|
</div>
|
|
);
|
|
}
|