react-starter-kit https://github.com/kriasoft/react-starter-kit
reactstrap http://reactstrap.github.io/
将 reactstrap 安装到 react-starter-kit 的步骤是什么?为了使用网格布局?
react-starter-kit https://github.com/kriasoft/react-starter-kit
reactstrap http://reactstrap.github.io/
将 reactstrap 安装到 react-starter-kit 的步骤是什么?为了使用网格布局?
脚步:
yarn add reactstrap
yarn add react-transition-group
yarn add bootstrap
import 'bootstrap/dist/css/bootstrap.css';
import { Container, Row, Col } from 'reactstrap';
<Container>
<Row>
<Col>.col</Col>
</Row>
<Row>
<Col>.col</Col>
<Col>.col</Col>
<Col>.col</Col>
<Col>.col</Col>
</Row>
<Row>
<Col xs="3">.col-3</Col>
<Col xs="auto">.col-auto - variable width content</Col>
<Col xs="3">.col-3</Col>
</Row>
</Container>
使用create-react-app怎么样?这就是我正在使用的...
npm install -g create-react-app
create-react-app my-app
然后,按照 reactstrap 的README中的说明安装 bootstrap、reactstrap、react 和 react-dom:
npm install --save reactstrap@next react-addons-transition-group
react-addons-css-transition-group bootstrap@4.0.0-beta.2
react-dom@^16.0.0
希望这可以帮助...
假设您正在使用npm
而不是yarn
:
npm i --save reactstrap # (http://reactstrap.github.io/)
npm i --save react-bootstrap bootstrap # (https://react-bootstrap.github.io/)
npm install --save reactstrap react react-dom # (http://reactstrap.github.io/);
但我认为最后一个是你要找的。
你可以使用 npm / yarn 包管理器安装 reactstrap。
安装
npm install reactstrap react react-dom
在您的应用程序代码中导入 Bootstrap:
npm install --save bootstrap
或者
import 'bootstrap/dist/css/bootstrap.min.css';
用法
import React from 'react';
import { Button } from 'reactstrap';
export default (props) => {
return (
<Button color="danger">Danger!</Button>
);
};
更多信息: Reactstrap - 安装