const HanyuuOAuth2AppScopeEntry = function(text) {
const element =
;
return {
get element() { return element; },
};
};
const HanyuuOAuth2AppScopeList = function() {
// TODO: actual scope listing
const permsElem =
{new HanyuuOAuth2AppScopeEntry('Do anything because I have not made up scopes yet.')}
{new HanyuuOAuth2AppScopeEntry('Eat soup.')}
{new HanyuuOAuth2AppScopeEntry('These are placeholders.')}
{new HanyuuOAuth2AppScopeEntry('This one is really long because I want to test wrapping and how the chevron icon thing will handle it so there will be a lot of text here, the app will not be gaining anything from it but yeah sometimes you just need to explode seventy times.')}
;
const element =
{permsElem}
;
return {
get element() { return element; },
};
};