mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
11 lines
No EOL
276 B
JavaScript
11 lines
No EOL
276 B
JavaScript
import { Components, registerComponent } from 'meteor/vulcan:lib';
|
|
import React from 'react';
|
|
|
|
const Layout = ({children}) =>
|
|
<div className="wrapper" id="wrapper">{children}</div>
|
|
|
|
Layout.displayName = "Layout";
|
|
|
|
registerComponent('Layout', Layout);
|
|
|
|
export default Layout; |