Created
March 19, 2018 18:07
Revisions
-
Chhavi created this gist
Mar 19, 2018 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ import React, { Component } from 'react'; import { Button } from 'react-bootstrap'; import '../../App.css'; import '../../css/bootstrap.min.css'; class ButtonBlock extends Component { render() { const wellStyles = { maxWidth: 400, margin: '0 auto 10px' }; return ( <div> <div className="well" style={wellStyles}> <Button bsStyle="primary" bsSize="large" block> Block level button </Button> <Button bsSize="large" block> Block level button </Button> </div> </div> ); } } export default ButtonBlock;