Files
navidrome/ui/src/layout/Notification.js
Deluan 861c742b3e Move notifications to the top
This avoids notifications getting covered by the player
2020-11-04 19:29:55 -05:00

12 lines
252 B
JavaScript

import React from 'react'
import { Notification as RANotification } from 'react-admin'
const Notification = (props) => (
<RANotification
{...props}
anchorOrigin={{ vertical: 'top', horizontal: 'center' }}
/>
)
export default Notification