2020-10-01 21:34:08 -05:00

21 lines
434 B
TypeScript

import cn from 'classnames'
import { FC } from 'react'
import s from './Footer.module.css'
import { Container } from '@components/ui'
interface Props {
className?: string
children?: any
}
const Footer: FC<Props> = ({ className }) => {
const rootClassName = cn(s.root, className)
return (
<footer className={rootClassName}>
<Container className={s.container}></Container>
</footer>
)
}
export default Footer