861c742b3e
This avoids notifications getting covered by the player
12 lines
252 B
JavaScript
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
|