mirror of
https://github.com/ascribe/onion.git
synced 2025-02-14 21:10:27 +01:00
16 lines
303 B
JavaScript
16 lines
303 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import ContractAgreementForm from '../../../../ascribe_forms/form_contract_agreement';
|
|
|
|
|
|
let IkonotvRequestLoan = React.createClass({
|
|
render() {
|
|
return (
|
|
<ContractAgreementForm />
|
|
);
|
|
}
|
|
});
|
|
|
|
export default IkonotvRequestLoan; |