8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import styles from "./footer.module.css"
|
|
|
|
import type { PropsWithChildren } from "react"
|
|
|
|
export default function Footer({ children }: PropsWithChildren) {
|
|
return <footer className={styles.footer}>{children}</footer>
|
|
}
|