mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-23 09:53:06 +00:00
15 lines
363 B
JavaScript
15 lines
363 B
JavaScript
import React from 'react';
|
|
import NotificationLookup from './notificationLookup/notificationLookup.jsx';
|
|
import NotificationAdd from './notificationAdd/notificationAdd.jsx';
|
|
|
|
const NotificationUtils = ()=>{
|
|
return (
|
|
<section className='notificationUtils'>
|
|
<NotificationAdd />
|
|
<NotificationLookup />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default NotificationUtils;
|