16 lines
357 B
JavaScript
Executable File
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 };
|