Vulcan/packages/customization-demo/lib/components/CustomLogo.jsx
2016-12-12 11:34:28 +09:00

21 lines
No EOL
631 B
JavaScript

/*
The original Logo components is defined using React's
functional stateless component syntax, so we redefine
it the same way.
*/
import React from 'react';
import { IndexLink } from 'react-router';
import Users from 'meteor/nova:users';
import { replaceComponent } from 'meteor/nova:core';
const CustomLogo = ({logoUrl, siteTitle, currentUser}) => {
return (
<div>
<h1 className="logo-text"><IndexLink to="/">{siteTitle}</IndexLink></h1>
{ currentUser ? <span className="logo-hello">Welcome {Users.getDisplayName(currentUser)} 👋</span> : null}
</div>
)
}
replaceComponent('Logo', CustomLogo);