Files
Airframe-React/app/routes/components/Pages/FooterAuth.js
2019-08-15 00:54:44 +02:00

16 lines
357 B
JavaScript
Executable File

import React from 'react';
import classNames from 'classnames';
import PropTypes from 'prop-types';
import { FooterText } from '../FooterText';
const FooterAuth = ({ className }) => (
<p className={ classNames(className, 'small') }>
<FooterText />
</p>
);
FooterAuth.propTypes = {
className: PropTypes.string
};
export { FooterAuth };