mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
15 lines
No EOL
321 B
JavaScript
15 lines
No EOL
321 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';
|
|
|
|
const CustomLogo = ({logoUrl, siteTitle}) => {
|
|
return (
|
|
<h1 className="logo-text"><a href="/">⭐{siteTitle}⭐</a></h1>
|
|
)
|
|
}
|
|
|
|
export default CustomLogo; |