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

11 lines
276 B
React
Raw Normal View History

2017-06-01 10:00:16 +09:00
import { Components, registerComponent } from 'meteor/vulcan:lib';
2017-05-19 14:42:43 -06:00
import React from 'react';
const Layout = ({children}) =>
<div className="wrapper" id="wrapper">{children}</div>
2018-09-16 11:48:38 +09:00
Layout.displayName = 'Layout';
registerComponent('Layout', Layout);
export default Layout;