mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 18:32:41 +00:00
Add DisplayNames
This commit is contained in:
@@ -8,6 +8,7 @@ const Moment = require('moment');
|
||||
|
||||
|
||||
const NotificationLookup = createClass({
|
||||
displayName : 'NotificationLookup',
|
||||
getDefaultProps() {
|
||||
return {};
|
||||
},
|
||||
|
||||
@@ -2,10 +2,15 @@ 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 />
|
||||
</>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user