Skip to content

Instantly share code, notes, and snippets.

@clc80
Created June 1, 2018 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clc80/d31cb2783d12b85739af13ae316f986a to your computer and use it in GitHub Desktop.
Save clc80/d31cb2783d12b85739af13ae316f986a to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
class Title extends React.Component {
render() {
return (
<div style={{backgroundColor: '#0e4db2'}}>
<h2 style={{fontFamily: 'cursive', fontSize: '24px'}}>
{this.props.title}
</h2>
</div>
);
}
}
export default Title;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment