12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
import NotificationSetting from './NotificationSetting'
|
|
import SettingsLayout from './SettingsLayout'
|
|
|
|
const NotificationSettings = () => {
|
|
return (
|
|
<SettingsLayout title="Notification Settings">
|
|
<NotificationSetting />
|
|
</SettingsLayout>
|
|
)
|
|
}
|
|
|
|
export default NotificationSettings |