/* List of movies. Wrapped with the "withList" and "withCurrentUser" containers. */ import React from 'react'; import Helmet from 'react-helmet'; import { Components, replaceComponent, registerComponent } from 'meteor/vulcan:core'; import { Link } from 'react-router'; const Layout = ({children, currentUser}) =>
{/* user accounts */}
{/* nav */}
  • All Movies
  • My Reactions
  • My Reactions (variant)
{children}
replaceComponent('Layout', Layout);