|
165
|
1 |
import React, { Component } from 'react'; |
|
|
2 |
import '../App.css'; |
|
|
3 |
import './SessionSummary.css' |
|
|
4 |
|
|
|
5 |
|
|
|
6 |
export default class ProtocolSummary extends Component { |
|
|
7 |
render() { |
|
|
8 |
return ( |
|
|
9 |
<div className="mt-5"> |
|
|
10 |
<div> |
|
|
11 |
<span className="bg-primary">important</span> |
|
|
12 |
<p className="text-primary">la métacatégorie important</p> |
|
|
13 |
</div> |
|
|
14 |
<div> |
|
|
15 |
<span className="bg-primary">mot-clé</span> |
|
|
16 |
<p className="text-primary">la métacatégorie mot-clé</p> |
|
|
17 |
</div> |
|
|
18 |
<div> |
|
|
19 |
<span className="bg-primary">commentaire</span> |
|
|
20 |
<p className="text-primary">la métacatégorie commentaire</p> |
|
|
21 |
</div> |
|
|
22 |
<div> |
|
|
23 |
<span className="bg-primary">trouble</span> |
|
|
24 |
<p className="text-primary">la métacatégorie trouble</p> |
|
|
25 |
</div> |
|
|
26 |
</div> |
|
|
27 |
); |
|
|
28 |
} |
|
|
29 |
} |