import React, { Fragment } from 'react'; import PropTypes from 'prop-types'; import { Button, ProgressBar } from '@freecodecamp/react-bootstrap'; import FullWidthRow from '../components/helpers/FullWidthRow'; import './supporters.css'; const propTypes = { isDonating: PropTypes.bool.isRequired }; function Supporters({ isDonating }) { return (

Support an open future.

freeCodeCamp.org is a tiny non-profit that's helping millions of people learn to code for free.
{isDonating ? 'Thank you for supporting freeCodeCamp.org' : 'Join 4,000 supporters. Your $5 / month donation will help ' + 'keep tech education free and open.'}

{isDonating ? null : ( )}
); } Supporters.displayName = 'Supporters'; Supporters.propTypes = propTypes; export default Supporters;