minecraft/components/footer.tsx

11 lines
210 B
TypeScript
Raw Normal View History

2022-12-03 20:02:24 +00:00
import styles from '/styles/Home.module.css'
const Footer = () => {
return (
<footer className={styles.footer}>
Built using Next.js
</footer>
);
}
export default Footer;