├── src
├── vite-env.d.ts
├── App.css
├── components
│ ├── Footer.tsx
│ ├── Notification.tsx
│ ├── Header.tsx
│ ├── Results.tsx
│ ├── Instructions.tsx
│ ├── NameContainer.tsx
│ ├── Switch.tsx
│ └── Counter.tsx
├── main.tsx
├── index.css
└── App.tsx
├── tsconfig.node.json
├── .gitignore
├── index.html
├── .eslintrc.cjs
├── tests
├── setup.ts
├── Header.test.tsx
├── Switch.test.tsx
├── Notification.test.tsx
├── Footer.test.tsx
├── Results.test.tsx
├── NameContainer.test.tsx
├── Counter.test.tsx
└── App.test.tsx
├── vite.config.ts
├── README.md
├── tsconfig.json
├── package.json
└── public
└── vite.svg
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///