Vulcan/packages/nova-core/lib/modules/components/Layout.jsx

11 lines
301 B
React
Raw Normal View History

import { Components, registerComponent } from 'meteor/nova:core';
import React, { PropTypes, Component } from 'react';
const Layout = ({children}) =>
<div className="wrapper" id="wrapper">{children}</div>
Layout.displayName = "Layout";
registerComponent('Layout', Layout);
export default Layout;