require('./lockNotification.less'); const React = require('react'); const createClass = require('create-react-class'); const LockNotification = createClass({ displayName : 'LockNotification', getInitialState : function() { return { disableLock : ()=>{} }; }, removeLock : function() { alert('Not yet implemented'); }, render : function(){ return

BREW LOCKED

This brew been locked by the Administrators. It will not be accessible by any method other than the Editor until the lock is removed.


LOCK MESSAGE:

{this.props.message || 'Unable to retrieve Lock Message'}

; } }); module.exports = LockNotification;