Refactor StorageSettings to use SettingsLayout and improve layout structure; add ThemeSettings component; update TermsView with new terms and structure; enhance ThingsView styling; clean up AddTaskModal by removing experimental feature chip; create CalendarCard component for calendar overview; optimize CustomParsers for repeat parsing; update NavBar for improved navigation and search parameter handling.
This commit is contained in:
12
src/views/Settings/NotificationSettings.jsx
Normal file
12
src/views/Settings/NotificationSettings.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import NotificationSetting from './NotificationSetting'
|
||||
import SettingsLayout from './SettingsLayout'
|
||||
|
||||
const NotificationSettings = () => {
|
||||
return (
|
||||
<SettingsLayout title="Notification Settings">
|
||||
<NotificationSetting />
|
||||
</SettingsLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export default NotificationSettings
|
||||
Reference in New Issue
Block a user