summaryrefslogtreecommitdiff
path: root/examples/portfolio/src/components/Footer/index.jsx
blob: 42953c367c4d302c6bd77eb27f8226ae3b01e7aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { h } from 'preact';
import Styles from './styles.module.scss';

function Footer() {
	return (
		<footer className={Styles.footer}>
			&copy; {new Date().getFullYear()} Jeanine White
			<small className={Styles.byline}>🚀 Built by Astro</small>
		</footer>
	);
}
export default Footer;