Add more components

This commit is contained in:
Tom Raithel
2017-02-21 22:58:35 +01:00
parent f284b4b310
commit 33b4d112a0
9 changed files with 125 additions and 46 deletions

14
js/components/Branding.js Normal file
View 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>
);
}