Hangry/app/containers/Settings/notificationSetting.js

15 lines
381 B
JavaScript
Raw Normal View History

2024-02-27 16:19:55 +08:00
import React, { Component } from 'react';
import Header from '../../components/Public/header'
class NotificationSetting extends Component {
render() {
return (
<View>
<Header title={'Notification Preferences'} navigation={this.props.navigation} />
</View>
);
}
}
export default NotificationSetting;