Last active
February 2, 2019 16:48
-
-
Save hellsan631/0e5e1f0509a23bc0dfad702ce9fe5340 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import './NameHeader.css' | |
export default function NameHeader({ title, name }) { | |
return ( | |
<div className="name-header-container"> | |
<h1>{title}</h1> | |
<h2>{name}</h2> | |
</div> | |
); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const NameHeaderContainer = styled.div` | |
border: 1px; | |
padding: 5px; | |
h1 { | |
color: #red; | |
} | |
h2 { | |
color: #yellow; | |
} | |
` | |
export default function NameHeader({ title, name }) { | |
return ( | |
<NameHeaderContainer> | |
<h1>{title}</h1> | |
<h2>{name}</h2> | |
</NameHeaderContainer> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment