const HanyuuOAuth2AppScopeEntry = function(text) { const element =
{text}
; 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 =
This application will be able to:
{permsElem}
; return { get element() { return element; }, }; };