import React, { Component } from 'react'; import { Badge, Col, Row } from 'react-bootstrap'; import PropTypes from 'prop-types'; import NumberFormat from 'react-number-format'; export default class BrainSummary extends Component { propTypes; render() { return( {/* Delta: 0 Theta: 1 Alpha: 2 Beta: 3 Gamma: 4 */} Relaxation: Fatigue: Focus: ); } } BrainSummary.propTypes = { dataset: PropTypes.object, };