"use strict";
// I M P O R T
import html from "choo/html";
// E X P O R T
export default () => {
if (
!process.env.GITHUB_APP_ID ||
!process.env.GITHUB_APP_SECRET ||
!process.env.REWARD_URL
) {
return html`
Environment variables required to enable functionality are missing.
`;
}
return html`
This will authenticate you with GitHub to prove eligibility as well as mark you as a follower of LBRY.
`;
};