React = require 'react'
{div, h3} = React.DOM

GridFormSection = (props) ->
  {children} = props

  div {
    key: 'grid-row-1'
    className: 'grid grid-pad'
  }, div {
      className: 'col-1-1'
    }, h3 {
        className:'form-section-title'
      }, children


module.exports = GridFormSection