mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 20:42:43 +00:00
16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
const React = require('react');
|
|
|
|
const NotificationLookup = require('./notificationLookup/notificationLookup.jsx');
|
|
const NotificationAdd = require('./notificationAdd/notificationAdd.jsx');
|
|
|
|
const NotificationUtils = ()=>{
|
|
return (
|
|
<section className='notificationUtils'>
|
|
<NotificationAdd />
|
|
<NotificationLookup />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
module.exports = NotificationUtils;
|