Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created November 11, 2017 14:22
Show Gist options
  • Save indreklasn/47c1dc52980ed0197db2ceb5ebbb9ac0 to your computer and use it in GitHub Desktop.
Save indreklasn/47c1dc52980ed0197db2ceb5ebbb9ac0 to your computer and use it in GitHub Desktop.
glamorous hello world
import React from 'react'
import glamorous from 'glamorous'
const Wrapper = glamorous.div({
backgroundColor: 'black'
})
const Title = glamorous.h1({
color: 'white'
})
const App = () => (
<Wrapper>
<Title> Hello JSS-React!</Title>
</Wrapper>
)
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment