You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hotkeys/website/components/Footer.js

20 lines
470 B
JavaScript

7 years ago
import React from 'react';
import style from './Footer.less';
export default function Footer({ name, href, year }) {
7 years ago
return (
7 years ago
<div className={style.footer}>
<div>
Licensed under MIT. (Yes it&acute;s free and
<a href="https://github.com/jaywcjlove/hotkeys">open-sourced</a>
)
</div>
<div>
©
<a target="_blank" rel="noopener noreferrer" href={href}>{name}</a>
{year}
7 years ago
</div>
</div>
);
}