diff --git a/components/cycle-day/symptoms/symptom-section.js b/components/cycle-day/symptoms/symptom-section.js index e2fe60b..8965190 100644 --- a/components/cycle-day/symptoms/symptom-section.js +++ b/components/cycle-day/symptoms/symptom-section.js @@ -1,5 +1,7 @@ import React, { Component } from 'react' import { View } from 'react-native' +import PropTypes from 'prop-types' + import AppText from '../../common/app-text' import styles from '../../../styles' @@ -33,4 +35,11 @@ export default class SymptomSection extends Component { ) } +} + +SymptomSection.propTypes = { + children: PropTypes.node, + explainer: PropTypes.string, + header: PropTypes.string, + inline: PropTypes.bool } \ No newline at end of file