Skip to content

Instantly share code, notes, and snippets.

@th3mon
Created January 10, 2020 05:53
Show Gist options
  • Save th3mon/a54ae227da85d07c0bda8713ac7599ce to your computer and use it in GitHub Desktop.
Save th3mon/a54ae227da85d07c0bda8713ac7599ce to your computer and use it in GitHub Desktop.
example code of functional component which use style attribute
import React from 'react';
const Header = ({children}) => {
return (
<header
style={{
color: '#666',
backgroundColor: '#333',
}}
>
{children}
</header>
);
}
export default Header;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment