使用 Redux 反应 bootstrap
React bootstrap with Redux
我无法让 react-bootstrap 在我的 react-redux 应用程序中执行此操作。我有一个看起来像这样的组件:
import React, { Component, PropTypes } from 'react';
import { Button } from 'react-bootstrap';
class Foo extends Component {
constructor( props, actions ) {
super(props, actions);
}
render() {
const { people } = this.props;
return(
<ul>
{people.map(person => {
return(
<div key={person}>
<li>{person.name}</li>
<Button bsStyle="success" onClick={ () => removePerson(person) }>Remove</Button>
</div>
)
})}
</ul>
)
}
}
export default Foo;
但是 react-bootstrap 没有对元素进行样式设置。对我所缺少的有什么想法吗?谢谢!
在“入门”部分的开头有一条不那么显眼的评论:First add the bootstrap CSS to you project
我被抓了,你呢?
我无法让 react-bootstrap 在我的 react-redux 应用程序中执行此操作。我有一个看起来像这样的组件:
import React, { Component, PropTypes } from 'react';
import { Button } from 'react-bootstrap';
class Foo extends Component {
constructor( props, actions ) {
super(props, actions);
}
render() {
const { people } = this.props;
return(
<ul>
{people.map(person => {
return(
<div key={person}>
<li>{person.name}</li>
<Button bsStyle="success" onClick={ () => removePerson(person) }>Remove</Button>
</div>
)
})}
</ul>
)
}
}
export default Foo;
但是 react-bootstrap 没有对元素进行样式设置。对我所缺少的有什么想法吗?谢谢!
在“入门”部分的开头有一条不那么显眼的评论:First add the bootstrap CSS to you project
我被抓了,你呢?