Skip to content

Instantly share code, notes, and snippets.

@StillLearnin
Created July 15, 2016 19:22
Show Gist options
  • Save StillLearnin/98f8effa2204ee0cfe0bc14ddba3182f to your computer and use it in GitHub Desktop.
Save StillLearnin/98f8effa2204ee0cfe0bc14ddba3182f to your computer and use it in GitHub Desktop.
React Component (no state)
import React from 'react';
var styles = require('./index.css');
//selective destructuring allows us to access
//children without using this.props.children
function Report ({ children }) {
return <div className={styles.report}>
{children}
</div>;
}
export default Report;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment