Created
October 19, 2018 00:11
-
-
Save jkinkead/2c0d8375b034134560bf2afd239a8050 to your computer and use it in GitHub Desktop.
Hello World React component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
const styles = { | |
titleBar: { | |
backgroundColor: 'black', | |
color: 'white' | |
}, | |
date: { | |
color: 'blue', | |
backgroundColor: 'gray', | |
textAlign: 'center' | |
} | |
} | |
export default function App() { | |
return ( | |
<div> | |
<h1 className="title-bar" style={styles.titleBar}>Hello from the cloud!</h1> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment