Files
bodyshop/client/src/components/footer/footer.component.jsx
2020-02-07 17:03:21 -08:00

13 lines
249 B
JavaScript

import { Col, Row } from "antd";
import React from "react";
export default function FooterComponent() {
return (
<Row>
<Col span={8} offset={8}>
Copyright Snapt Software 2019. All rights reserved.
</Col>
</Row>
);
}