Alumni
Alumni: Cannatelli explains what Dayton Basketball means to her! (Video)
Senior Guard Lauren Cannatelli is featured on this week’s Dayton Basketball Senior Spotlight.
Good Luck Lauren! #WestPride
The next level… @laurcann12 @DaytonWeAreOne #GreatnessNow #WEareLakota #StateChampClub💍 pic.twitter.com/KQYcDQYD7y
— Lakota West Girls Basketball (@LakotaWestGB) November 9, 2018
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 (_) {} })();