├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── imgs │ ├── aforshow.webp │ └── background.webp └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── PlayersScreen.jsx │ ├── StartingScreen.jsx │ ├── WinnerScreen.jsx │ └── common │ │ └── Button.jsx ├── consts │ └── utils.js ├── index.css └── main.jsx └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # raffle-aforshow 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/imgs/aforshow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/public/imgs/aforshow.webp -------------------------------------------------------------------------------- /public/imgs/background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/public/imgs/background.webp -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/PlayersScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/components/PlayersScreen.jsx -------------------------------------------------------------------------------- /src/components/StartingScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/components/StartingScreen.jsx -------------------------------------------------------------------------------- /src/components/WinnerScreen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/components/WinnerScreen.jsx -------------------------------------------------------------------------------- /src/components/common/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/components/common/Button.jsx -------------------------------------------------------------------------------- /src/consts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/consts/utils.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/raffle-aforshow/HEAD/vite.config.js --------------------------------------------------------------------------------