4
0
forked from crowetic/commerce
This commit is contained in:
Luis Alvarez
2020-09-30 11:44:38 -05:00
commit eb44455cde
67 changed files with 19268 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
.root {
@apply p-0;
}
.container {
@apply flex justify-between items-center flex-row px-4 py-5;
}

View File

@@ -0,0 +1,20 @@
import cn from "classnames";
import React, { FunctionComponent } from "react";
import s from "./Footer.module.css";
import { Container } from "@components/ui";
interface Props {
className?: string;
children?: any;
}
const Footer: FunctionComponent<Props> = ({ className }) => {
const rootClassName = cn(s.root, className);
return (
<footer className={rootClassName}>
<Container className={s.container}></Container>
</footer>
);
};
export default Footer;

View File

@@ -0,0 +1 @@
export { default } from "./Footer";