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