1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17export default function Loading() { return ( <div data-testid="loading" style={{ display: "flex", justifyContent: "center", padding: "3rem", color: "var(--muted)", fontSize: "0.9rem", }} > Loading... </div> ); }