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 ReactDOM from 'react-dom'; | |
| import PropTypes from 'prop-types'; | |
| import styled, { css } from 'styled-components'; | |
| import { rgba } from 'polished'; | |
| const Wrapper = styled.div` | |
| position: absolute; | |
| z-index: 10000; | |
| &::before { |
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
| did:3:kjzl6cwe1jw145op9h0mianjjuk1psfve485edvvrit3khvxctclrnlc2ahowo1 |
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
| interface ApplicationStackProps extends StackProps { | |
| dashboardStack: DashboardStack; | |
| } | |
| export class ApplicationStack extends Stack { | |
| constructor(scope: Construct, id: string, props: ApplicationStackProps) { | |
| super(scope, id, props); | |
| const myFunction = new NodejsFunction(this, 'MyFunction', { | |
| functionName: PhysicalName.GENERATE_IF_NEEDED, |
OlderNewer