mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 18:32:41 +00:00
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
const React = require('react');
|
|
const createClass = require('create-react-class');
|
|
|
|
const NotificationUtils = createClass({
|
|
render : function(){
|
|
return <>
|
|
<div>Notifications</div>
|
|
</>;
|
|
}
|
|
});
|
|
|
|
module.exports = NotificationUtils;
|