40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
import React from "react";
|
|
|
|
const Formation_Partner = (props) => {
|
|
|
|
//console.log({props});
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
|
|
<div className="forma_rightbox">
|
|
<h1 className="h1_forma">
|
|
<a href= {"/Display-Detail-formation/" + props.formation.external_code}>
|
|
Ref : {props.formation.external_code}
|
|
</a>
|
|
</h1>
|
|
<div className="p_forma">
|
|
|
|
<b> Titre :</b> {props.formation.title} <br/>
|
|
<b> Desc : </b> {props.formation.description} <br/>
|
|
<br/>
|
|
|
|
<ul className="criteres">
|
|
<li> Langue : {props.formation.lang}</li>
|
|
<li> Certification : {props.formation.certif} </li>
|
|
<li> Type : {props.formation.title} </li>
|
|
<li> Support : {props.formation.title}</li>
|
|
<li> Prix : {props.formation.price} </li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
|
|
export default Formation_Partner; |