mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
301 B
React
11 lines
301 B
React
![]() |
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;
|