Function
LoadingScreen
({ message }: { message: string })
Source from the content-addressed store, hash-verified
| 68 | } |
| 69 | |
| 70 | export function LoadingScreen({ message }: { message: string }) { |
| 71 | return html`<div class="loading-screen"><div class="loading-spinner"></div><div class="loading-text">${message}</div></div>`; |
| 72 | } |
| 73 | |
| 74 | export function ScoreRing({ score, color, size }: { score: number; color: string; size: number }) { |
| 75 | const r = (size - 6) / 2; |
Callers
nothing calls this directly
Tested by
no test coverage detected