mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
15 lines
321 B
React
15 lines
321 B
React
![]() |
/*
|
||
|
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;
|