Vulcan/packages/my-custom-package/lib/components/CustomLogo.jsx

16 lines
377 B
React
Raw Normal View History

/*
The original Logo components is defined using React's
functional stateless component syntax, so we redefine
it the same way.
*/
import React from 'react';
2016-06-19 16:25:19 +09:00
import { IndexLink } from 'react-router';
const CustomLogo = ({logoUrl, siteTitle}) => {
return (
2016-06-19 16:25:19 +09:00
<h1 className="logo-text"><IndexLink to="/">{siteTitle}</IndexLink></h1>
)
}
export default CustomLogo;