Skip to content

Commit e29e544

Browse files
authored
Merge pull request #311 from api-platform/mysiar-bootstrap4
Update react.md
2 parents 54599f1 + d08773d commit e29e544

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

client-generator/react.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,27 @@ Install the generator globally:
1515

1616
Reference the Bootstrap CSS stylesheet in `public/index.html` (optional):
1717

18+
Bootstrap 3 - last release 0.1.15
1819
```html
1920
<!-- ... -->
2021
<title>React App</title>
21-
22+
2223
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
2324
</head>
2425
<!-- ... -->
2526
```
27+
Bootstrap 4 - from release 0.1.16
28+
29+
```html
30+
<!-- ... -->
31+
<title>React App</title>
32+
33+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
34+
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
35+
</head>
36+
<!-- ... -->
37+
```
38+
2639

2740
In the app directory, generate the files for the resource you want:
2841

0 commit comments

Comments
 (0)