Files
redash/client/app/components/Footer.jsx
2019-02-18 22:15:51 +02:00

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;