2018-03-05 18:18:51 +00:00
|
|
|
import React, { Component } from react
|
|
|
|
|
|
|
|
class MyComponent extends Component {
|
|
|
|
render = () => {
|
|
|
|
return (
|
2014-09-16 01:57:34 +00:00
|
|
|
<div id="yield">
|
2018-03-05 17:33:16 +00:00
|
|
|
<div className='centerContent'>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ render 'form' }
|
2014-09-16 01:57:34 +00:00
|
|
|
</div>
|
2017-10-14 19:55:50 +00:00
|
|
|
</div>
|
2018-03-05 18:18:51 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyComponent
|