-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
31 lines (25 loc) · 1.04 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import React from 'react'
export default () => {
return (
<div className="container">
<h1>Bootstrap Cards</h1>
<div className="card">
<div className="card-body">
<h5 className="card-title">Card One</h5>
<p className="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" className="btn btn-primary">Go somewhere</a>
</div>
<div className="card-body">
<h5 className="card-title">Card Two</h5>
<p className="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" className="btn btn-primary">Go somewhere</a>
</div>
<div className="card-body">
<h5 className="card-title">Card Three</h5>
<p className="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" className="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
);
};