mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
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
|