trc-client-core
Version:
The core of the TRC Client
29 lines (22 loc) • 1.41 kB
JSX
import React from 'react';
import DepartmentPage from 'trc-client-core/src/components/DepartmentPage';
import Markdown from 'trc-client-core/src/components/Markdown';
import QandaFeed from 'trc-client-core/src/qanda/QandaFeed';
var WarrantyPage = React.createClass({
displayName: 'WarrantyPage',
render(){
return (
<div>
<h1>Warranty</h1>
<Markdown className="margin-bottom2" html={`
Welcome to Warranty’s TEAM training eLearning platform. It is here where Dealer staff are required to undertake interactive training to become recognised Toyota trained warranty administrators.
The Introduction Module will also provide a valuable insight for all Dealer service staff into the important role of a warranty administrator and the information requirements to successfully submit warranty claims
This resource will expand over time to include many additional modules to assist you, the warranty administrator, with a greater understanding of the varied Claim types, at times unique requirements, and also provide an important reference resource.
Upon completion of 'Introduction to Warranty Administration' & module 1, you will be recognised for this achievement.
`}/>
<QandaFeed filter={['Warranty']} defaultTag="Warranty"/>
</div>
);
}
});
export default WarrantyPage;