joinlemmy-site/src/shared/components/footer.tsx

37 lines
873 B
TypeScript
Raw Normal View History

import { Component } from "inferno";
import { LinkLine } from "./link-line";
export class Footer extends Component<any, any> {
constructor(props: any, context: any) {
super(props, context);
}
render() {
return (
<footer>
<br />
<nav class="nav">
<div class="nav-left">
<p style="padding-left: 2rem">
Made with
<a style="display: inline-block" href="https://infernojs.org">
Inferno
</a>
and
<a
style="display: inline-block"
href="https://jenil.github.io/chota"
>
Chota
</a>
</p>
</div>
<div class="nav-right hide-sm hide-md hide-lg">
<LinkLine />
</div>
</nav>
</footer>
);
}
}