Skip to content

Instantly share code, notes, and snippets.

@imparvez
Created May 12, 2018 14:33
Show Gist options
  • Save imparvez/567ba5b2af90a00688d571c20171dc75 to your computer and use it in GitHub Desktop.
Save imparvez/567ba5b2af90a00688d571c20171dc75 to your computer and use it in GitHub Desktop.
Food List App
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