quintodrome/ui/src/layout/Notification.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
252 B
JavaScript
Raw Normal View History

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