Skip to content

Instantly share code, notes, and snippets.

service: thundra-api
tenant: thundra-article
app: thundra-api
plugins:
- '@serverless/enterprise-plugin'
provider:
name: aws
runtime: nodejs10.x
profile: aws-profile
region: us-west-2
service: thundra-api
tenant: thundra-article
app: thundra-api
plugins:
- '@serverless/enterprise-plugin'
provider:
name: aws
runtime: nodejs10.x
functions:
api:
@ben-kirby
ben-kirby / App.js
Created August 13, 2019 21:14
Using Semantic UI in tandem with Styled Components
import React, { Component } from 'react';
import { Button } from 'semantic-ui-react';
import { StyledButton } from './styledComponents';
export default class App extends Component {
render(){
return(
<div>
<Button>This is a normal Semantic button</Button>
<StyledButton>This is a Semantic button that has been styled with Styled Components</StyledButton>