trc-client-core
Version:
The core of the TRC Client
22 lines (17 loc) • 585 B
JSX
import React from 'react';
import Auth from 'trc-client-core/src/components/Auth';
import AskForm from 'trc-client-core/src/components/AskForm';
var ProductSidebar = React.createClass({
displayName: 'ProductSidebar',
render() {
return (
<div>
<Auth site="TOYOTA">
<a className="ArrowLink" href="/#/sales-society-points"><div className="ArrowLink_inner">Sales Society Points</div> Here</a>
<AskForm/>
</Auth>
</div>
);
}
});
module.exports = ProductSidebar;