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