client/src/components/ProtocolSummary.js
author ymh <ymh.work@gmail.com>
Tue, 13 Nov 2018 16:46:15 +0100
changeset 172 4b780ebbedc6
parent 170 7da1d5137b0b
child 174 ac1a026edd58
permissions -rw-r--r--
- Upgrade libraries - Make things work again
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
165
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     1
import React, { Component } from 'react';
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     2
import '../App.css';
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     3
import './SessionSummary.css'
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     4
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     5
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     6
export default class ProtocolSummary extends Component {
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     7
  render() {
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     8
    return (
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
     9
      <div className="mt-5">
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    10
        <div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    11
        <span className="bg-primary">important</span>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    12
        <p className="text-primary">la métacatégorie important</p>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    13
        </div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    14
        <div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    15
        <span className="bg-primary">mot-clé</span>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    16
        <p className="text-primary">la métacatégorie mot-clé</p>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    17
        </div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    18
        <div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    19
        <span className="bg-primary">commentaire</span>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    20
        <p className="text-primary">la métacatégorie commentaire</p>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    21
        </div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    22
        <div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    23
        <span className="bg-primary">trouble</span>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    24
        <p className="text-primary">la métacatégorie trouble</p>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    25
        </div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    26
      </div>
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    27
    );
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    28
  }
62e5be0df812 Add ProtocolSummary component
salimr <riwad.salim@yahoo.fr>
parents:
diff changeset
    29
}