0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 15:42:38 +00:00

Tabify Admin page, add Notification tab

This commit is contained in:
G.Ambatte
2023-01-04 22:49:38 +13:00
parent d7ee004127
commit f66664a3e2
2 changed files with 33 additions and 1 deletions

View File

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