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.
21 lines
505 B
JavaScript
21 lines
505 B
JavaScript
import React from 'react';
|
|
import style from './Footer.module.less';
|
|
|
|
export default function Footer({ name, href, year, children }) {
|
|
return (
|
|
<div className={style.footer}>
|
|
{children}
|
|
<div>
|
|
Licensed under MIT. (Yes it´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}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|