import React from 'react'; import classNames from 'classnames'; import PropTypes from 'prop-types'; import { FooterText } from '../FooterText'; const FooterAuth = ({ className }) => (

); FooterAuth.propTypes = { className: PropTypes.string }; export { FooterAuth };