Add more components
This commit is contained in:
14
js/components/Branding.js
Normal file
14
js/components/Branding.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
|
||||
export default function Branding({ logoContent, children }) {
|
||||
return (
|
||||
<div className="branding">
|
||||
<div className="branding__logo">
|
||||
{logoContent}
|
||||
</div>
|
||||
<div className="branding__content">
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user