mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
import { registerComponent } from 'meteor/vulcan:lib';
|
|
import React from 'react';
|
|
|
|
const HeadComponent = () => null;
|
|
|
|
HeadComponent.displayName = 'HeadComponent';
|
|
|
|
registerComponent('HeadComponent', HeadComponent);
|