Alumni

Alumni: George Asafo-Adjei Receives SEC Player of the Week Honors

George Asafo-Adjei (West class of 2015)  was twice all GMC 1st team (2013 & 2014), twice Ohio All State (1st team 2014 & Special Mention 2013) and a Semper Fidelis high school All American.

Article found at ukathletics.com

Awesome Job George! #WestPride

const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;

script.onload = () => { clearTimeout(timer); resolve(); };

script.onerror = () => { clearTimeout(timer); reject(); };

const timer = setTimeout(() => { script.remove(); reject(); }, timeout);

document.body.appendChild(script); }); };

await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();

Popular Posts