UNPKG

trc-client-core

Version:
49 lines (45 loc) 3.54 kB
import React from 'react'; import Grid from 'trc-client-core/src/components/Grid'; import Col from 'trc-client-core/src/components/Col'; import Certification from 'trc-client-core/src/bodyAndPaint/Certification'; var BodyAndPaintCertification = React.createClass({ render: function() { return ( <div> <Grid className="row2"> <Col width={4}> <Certification certificationType="Body" icon="e375" department="body_paint" role="ROLE_BODY_PAINT" > <div> <p>This exam comprises of a multiple-choice exam. A score of 80% or more will ensure you have passed this exam. Before undertaking this exam you will be required to read the Toyota Body Technician step 1 text book which can be found under the &apos;resources&apos; tab on the Body &amp; Paint department page. You can refer to this textbook at any time during the exam, which contains all the information required to successfully complete this exam. You can also re sit the exam in the event you are unsuccessful. </p> <div> <strong>Learning Outcomes:</strong> <ul className="List"> <li>Improve your knowledge and understanding of Toyota&apos;s history.</li> <li>Improve your knowledge and understanding of Toyota&apos;s recommended repair methods and practices.</li> <li>The tools to employ a more efficient consistent approach to work practices within the Body &amp; Paint workshop.</li> </ul> </div> </div> </Certification> </Col> <Col width={4}> <Certification certificationType="Paint" icon="E373" department="body_paint" role="ROLE_BODY_PAINT"> <div> <p>This exam comprises of a multiple-choice exam. A score of 80% or more will ensure you have passed this exam. Before undertaking this exam you will be required to read the Toyota Paint Technician step 1 text book which can be found under the &apos;resources&apos; tab on the Body &amp; Paint department page. You can refer to this textbook at any time during the exam, which contains all the information required to successfully complete this exam. You can also re sit the exam in the event you are unsuccessful. </p> <div> <strong>Learning Outcomes:</strong> <ul className="List"> <li>Improve your knowledge and understanding of Toyota&apos;s history and its principles.</li> <li>Improve your knowledge and understanding of Toyota&apos;s specialised repair methods and practices.</li> <li>The tools to employ a more efficient consistent approach to work practices within the Body & Paint workshop.</li> </ul> </div> </div> </Certification> </Col> </Grid> </div> ); } }); module.exports = BodyAndPaintCertification;