// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 import React, { Component } from 'react'; import PropTypes from 'prop-types'; import './Footer.scss'; import { Themes } from "./constants/Themes"; export class Footer extends Component { render() { let {theme} = this.props; if (!theme) { theme = 'light'; } return ( ) } } Footer.propTypes = { theme : PropTypes.oneOf([Themes.LIGHT, Themes.DARK]) };