import { Components, registerComponent } from 'meteor/vulcan:lib'; import React from 'react'; const Layout = ({children}) =>
{children}
Layout.displayName = 'Layout'; registerComponent('Layout', Layout); export default Layout;