-
Probably best implemented by making a react component (among the others in reactComponents.jsx).
-
This issue is a:
- [ ] Bug report
- [ ] Feature request
- [x] Question / support request
- [ ] Other
```
node -v : 8.0.0
npm -v 5.0.0
```
Each time i create a build, the `/es` and `/li…
-
```javascript
// from
var Hoge = React.createClass({});
//to
class Hoge extends ReactComponents({})
```
-
I have routes which use both BlazeLayout and ReactLayout. This is because I am using meteor-useraccounts/flow-routing which only supports Blaze at the time.
The Problem is when a browser calls a rou…
-
Hey guys, 9.11.0 created a problem with some of my tests. My code does math based on sizes of dom nodes. I was previously able to do something like
```js
node.offsetTop = 100;
```
Now, I'm jus…
-
The consensus on how to style the app was that Material Design is the best way to go. Since it would be way too much work to build our own Material Design library from scratch, we need to pick one tha…
-
with the following grunt browserify config:
``` js
browserify: {
options: {
transform: [
['babelify', { presets: [ 'es2015', 'react' ]}],
],
plugin: [ 'livereactload', ],
ex…
-
It could look like this:
``` javascript
const reactifier = html2react({ a: Link })
const reactComponents = reactifier(content)
```
for the regular API it would imply only reverting the order of the…
-
Hi guys, trying to integrate your App in my React-redux web app and having couple issues.
This is how I initialize it in one of my ReactComponents
Bsically I use option file from Example and enabl…
-
Ex - I have a project `A` which is dependent on `react`. project `B` is dependant on project `A`. project `C` is dependant on `B`.
react is peerDependencies for project A. So when I create bundle for…