反応スターターキット https://github.com/kriasoft/react-starter-kit
反応ストラップ http://reactstrap.github.io/
reactstrap を react-starter-kit にインストールする手順は何ですか? グリッドレイアウトを使用するには?
反応スターターキット https://github.com/kriasoft/react-starter-kit
反応ストラップ http://reactstrap.github.io/
reactstrap を react-starter-kit にインストールする手順は何ですか? グリッドレイアウトを使用するには?
npm / yarn package manager を使用して 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>
);
};