import { NotificationList as BaseNotificationList, List } from '@applica-software-guru/react-admin';

function NotificationList() {
  return (
    <List>
      <BaseNotificationList />
    </List>
  );
}
export const notification = {
  list: NotificationList,
  options: {
    group: 'dashboard'
  }
};
