mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
14 lines
No EOL
250 B
JavaScript
14 lines
No EOL
250 B
JavaScript
import { registerComponent } from 'meteor/nova:lib';
|
|
import React from 'react';
|
|
|
|
const Layout = props => {
|
|
return (
|
|
<div>{props.children}</div>
|
|
);
|
|
}
|
|
|
|
Layout.displayName = "Layout";
|
|
|
|
registerComponent('Layout', Layout);
|
|
|
|
export default Layout; |