2018-03-05 13:18:51 -05:00
|
|
|
import React, { Component } from react
|
|
|
|
|
|
|
|
class MyComponent extends Component {
|
|
|
|
render = () => {
|
|
|
|
return (
|
2016-03-24 17:16:27 -07:00
|
|
|
<div id="yield">
|
2018-03-05 12:33:16 -05:00
|
|
|
<div className="centerContent">
|
|
|
|
<div className="page-header">
|
2018-03-03 21:25:42 -05:00
|
|
|
<h2>{ t('.title') }</h2>
|
2016-03-24 17:16:27 -07:00
|
|
|
</div>
|
|
|
|
|
2018-03-03 21:25:42 -05:00
|
|
|
{ render 'form', application: @application }
|
2016-03-24 17:16:27 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-05 13:18:51 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyComponent
|