15
app/routes/components/Pages/FooterAuth.js
Executable file
15
app/routes/components/Pages/FooterAuth.js
Executable file
@@ -0,0 +1,15 @@
|
||||
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 };
|
Reference in New Issue
Block a user