0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 13:02:45 +00:00
Files
homebrewery/client/homebrew/brewRenderer/brewRenderer.smart.jsx
2017-01-22 12:39:06 -05:00

10 lines
251 B
JavaScript

const Store = require('homebrewery/brew.store.js');
const BrewRenderer = require('./brewRenderer.jsx');
module.exports = Store.createSmartComponent(BrewRenderer, () => {
return {
brewText : Store.getBrewText(),
errors : Store.getErrors()
}
});