You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stills outputs a div with inherited height/width. it seems layoutIsInherited is not even called, right?
Wanted to make sure if the use case is supported:
var A = React.createClass({
<Layout layoutHeight={100} layoutWidth={100}>
<B />
</Layout>
})
var B = React.createClass({
<Layout layoutHeight={50}>
....
</Layout>
})
Does B needs LayoutMixin? For some reason, B gets style={width:100, width:100}
The text was updated successfully, but these errors were encountered:
pedroteixeira
changed the title
is layoutHeight=omit implemented?
How to use Layout in different components?
Feb 27, 2015
Using inside a child component:
Stills outputs a div with inherited height/width. it seems
layoutIsInherited
is not even called, right?Wanted to make sure if the use case is supported:
Does B needs LayoutMixin? For some reason, B gets style={width:100, width:100}
The text was updated successfully, but these errors were encountered: