abkfenris/inferno-react

View on GitHub
blueprints/layout/files/__root__/layouts/__name__Layout/__name__Layout.js

Summary

Maintainability
A
0 mins
Test Coverage
import React, { PropTypes } from 'react'

function <%= pascalEntityName %> ({ children }) {
  return (
    <div className='<%= snakeEntityName %>-layout'>
      {children}
    </div>
  )
}

<%= pascalEntityName %>.propTypes = {
  children: PropTypes.element
}

export default <%= pascalEntityName %>