mirror of
https://github.com/getredash/redash.git
synced 2026-05-10 15:00:16 -04:00
23 lines
510 B
JavaScript
23 lines
510 B
JavaScript
import React from 'react';
|
|
import { react2angular } from 'react2angular';
|
|
|
|
export function Footer() {
|
|
const separator = ' \u2022 ';
|
|
|
|
return (
|
|
<div id="footer">
|
|
<a href="https://redash.io">Redash</a>
|
|
{separator}
|
|
<a href="https://redash.io/help/">Documentation</a>
|
|
{separator}
|
|
<a href="https://github.com/getredash/redash">Contribute</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function init(ngModule) {
|
|
ngModule.component('footer', react2angular(Footer));
|
|
}
|
|
|
|
init.init = true;
|