mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 22:52:40 +00:00
20 lines
463 B
JavaScript
20 lines
463 B
JavaScript
const React = require('react');
|
|
const createClass = require('create-react-class');
|
|
|
|
const NotificationLookup = require('./notificationLookup/notificationLookup.jsx');
|
|
const NotificationAdd = require('./notificationAdd/notificationAdd.jsx');
|
|
|
|
const NotificationUtils = createClass({
|
|
displayName : 'NotificationUtils',
|
|
|
|
render : function(){
|
|
return <>
|
|
<NotificationAdd />
|
|
<hr />
|
|
<NotificationLookup />
|
|
</>;
|
|
}
|
|
});
|
|
|
|
module.exports = NotificationUtils;
|