mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
import React from 'react';
|
|
import { Components, registerComponent } from 'meteor/vulcan:lib';
|
|
|
|
const debugStyles = {
|
|
padding: '20px'
|
|
};
|
|
|
|
const DebugLayout = props => <div className="debug-layout" style={debugStyles}>{props.children}</div>;
|
|
|
|
registerComponent('DebugLayout', DebugLayout);
|