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
| 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 |
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
| service: thundra-api | |
| tenant: thundra-article | |
| app: thundra-api | |
| plugins: | |
| - '@serverless/enterprise-plugin' | |
| provider: | |
| name: aws | |
| runtime: nodejs10.x | |
| functions: | |
| api: |
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, { 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> |