// 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 { FormGroup, Input, Label } from "reactstrap"; export class Checkboxes extends Component { render() { const {label, choices, ...rest} = this.props; return (