jam-cloud/jam-ui/src/components/footer/JKFooter.js

21 lines
541 B
JavaScript
Raw Normal View History

import React from 'react';
import { Col, Row } from 'reactstrap';
import { version } from '../../config';
const JKFooter = () => (
<footer>
<Row noGutters className="justify-content-between text-center fs--1 mt-4 mb-3">
<Col sm="auto">
<p className="mb-0 text-600">
Copyright &copy; {new Date().getFullYear()} JamKazam, Inc. All Rights Reserved
</p>
</Col>
<Col sm="auto">
<p className="mb-0 text-600">v{version}</p>
</Col>
</Row>
</footer>
);
export default JKFooter;