Softball

Allie Cummins and Lauren Betz Named to All-State Team!

All-State Team List

Congratulations to (1st Team) Allie Cummins and (Honorable Mention) Luren Betz on being selected to the ALL-STATE TEAM! #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