Skip to content

Instantly share code, notes, and snippets.

@gCardinal
Created June 7, 2016 16:11
Show Gist options
  • Save gCardinal/d61e0bf988fa2eba487be6409fb13cb3 to your computer and use it in GitHub Desktop.
Save gCardinal/d61e0bf988fa2eba487be6409fb13cb3 to your computer and use it in GitHub Desktop.
import React from 'react';
import styles from './user-profile.css';
export default class UserProfile extends React.Component {
render () {
return (
<div className={styles.container}>
<div className={styles.name}>John Doe</div>
<div className={styles.role}>Captain</div>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment