11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
|
import styles from '/styles/Home.module.css'
|
||
|
|
||
|
const Footer = () => {
|
||
|
return (
|
||
|
<footer className={styles.footer}>
|
||
|
Built using Next.js
|
||
|
</footer>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default Footer;
|