import { Components, registerComponent, withCurrentUser } from 'meteor/vulcan:core'; import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import Helmet from 'react-helmet'; const Layout = ({currentUser, children, currentRoute}) =>
{currentUser ? : null}
{children}
registerComponent('Layout', Layout, withCurrentUser);