mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-13 19:32:45 +00:00
10 lines
251 B
JavaScript
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()
|
|
}
|
|
}); |