Apply prettier over all files

This commit is contained in:
Luis Alvarez
2020-10-01 20:40:40 -05:00
parent 2314ad760a
commit 0ef6449aff
72 changed files with 648 additions and 652 deletions

View File

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