Skip to content

Instantly share code, notes, and snippets.

@albertorestifo
Created April 26, 2017 10:18
Show Gist options
  • Save albertorestifo/e22a8e09de643fe216b6dcffb3f23d1d to your computer and use it in GitHub Desktop.
Save albertorestifo/e22a8e09de643fe216b6dcffb3f23d1d to your computer and use it in GitHub Desktop.
import React from 'react';
const style = {
title: {
fontSize: '24px',
fontWeight: 'bold',
marginTop: '5px',
marginBottom: '10px',
},
};
function Title({ children }) {
return (
<h1 style={style.title}>
{children}
</h1>
);
}
export default Title;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment