0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 22:32:45 +00:00

Add basic Notification Lookup functionality

This commit is contained in:
G.Ambatte
2023-01-04 23:32:35 +13:00
parent 35b4c354f2
commit a499bb3a54
3 changed files with 115 additions and 1 deletions

View File

@@ -1,10 +1,12 @@
const React = require('react');
const createClass = require('create-react-class');
const NotificationLookup = require('./notificationLookup/notificationLookup.jsx');
const NotificationUtils = createClass({
render : function(){
return <>
<div>Notifications</div>
<NotificationLookup />
</>;
}
});