Vulcan/packages/my-custom-package/lib/components/CustomLogo.jsx
2016-06-19 16:25:19 +09:00

16 lines
No EOL
377 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';
const CustomLogo = ({logoUrl, siteTitle}) => {
return (
<h1 className="logo-text"><IndexLink to="/">{siteTitle}</IndexLink></h1>
)
}
export default CustomLogo;