Skip to content

Instantly share code, notes, and snippets.

@jkinkead
Created October 19, 2018 00:11
Show Gist options
  • Save jkinkead/2c0d8375b034134560bf2afd239a8050 to your computer and use it in GitHub Desktop.
Save jkinkead/2c0d8375b034134560bf2afd239a8050 to your computer and use it in GitHub Desktop.
Hello World React component
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