├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .prettierignore ├── README.md ├── bun.lockb ├── package.json ├── src ├── components │ └── spin-delay.tsx ├── entry.dev.tsx ├── entry.ssr.tsx ├── index.ts └── root.tsx ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/.prettierignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/package.json -------------------------------------------------------------------------------- /src/components/spin-delay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/src/components/spin-delay.tsx -------------------------------------------------------------------------------- /src/entry.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/src/entry.dev.tsx -------------------------------------------------------------------------------- /src/entry.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/src/entry.ssr.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/src/root.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/qwik-spin-delay/HEAD/vite.config.ts --------------------------------------------------------------------------------