├── .gitignore ├── README.md ├── index.html ├── package.json ├── src ├── components │ └── Card │ │ ├── index.jsx │ │ └── styles.css ├── main.jsx ├── pages │ └── Home │ │ ├── index.jsx │ │ └── styles.css └── styles │ └── global.css └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/src/components/Card/index.jsx -------------------------------------------------------------------------------- /src/components/Card/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/src/components/Card/styles.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /src/pages/Home/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/src/pages/Home/styles.css -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/lista_presenca/HEAD/vite.config.js --------------------------------------------------------------------------------