0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00

Add DisplayNames

This commit is contained in:
G.Ambatte
2023-01-05 10:04:45 +13:00
parent 42125f4041
commit ec040cc2bb
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ const Moment = require('moment');
const NotificationLookup = createClass({
displayName : 'NotificationLookup',
getDefaultProps() {
return {};
},

View File

@@ -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 />
</>;
}