Created
May 12, 2018 14:33
-
-
Save imparvez/567ba5b2af90a00688d571c20171dc75 to your computer and use it in GitHub Desktop.
Food List App
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 React, { Component } from 'react'; | |
import styled from 'styled-components'; | |
export default class Title extends Component { | |
render(){ | |
console.log("PROPS=>", this.props); | |
return( | |
<Header>{this.props.title}</Header> | |
) | |
} | |
} | |
const Header = styled.h2` | |
text-align: center; | |
color: #000; | |
margin: 0; | |
font-family: monospace; | |
font-size: 24px; | |
line-height: 32px; | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment