Skip to content

Commit

Permalink
Merge pull request #4 from slusy/results-summary-component
Browse files Browse the repository at this point in the history
feat: results summary component
  • Loading branch information
spudoodle authored Nov 15, 2024
2 parents 2e02079 + c163562 commit 2659bc7
Show file tree
Hide file tree
Showing 37 changed files with 4,503 additions and 2 deletions.
3 changes: 1 addition & 2 deletions CODE/NEWBIE/qr-code-component/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

![qr-code-component](https://github.com/user-attachments/assets/386d2e87-32d3-4911-b632-d785f01e67c0)


[Live Demo](http://achal-socials.vercel.app/github/frontendmentor/newbie/qr-code-component/)

[QR Code Component](https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H/hub) challenge solution on [Frontend Mentor](https://www.frontendmentor.io)
[QR Code Component](https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H) challenge solution on [Frontend Mentor](https://www.frontendmentor.io)
<br><br>

## Built With
Expand Down
24 changes: 24 additions & 0 deletions CODE/NEWBIE/results-summary-component/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
15 changes: 15 additions & 0 deletions CODE/NEWBIE/results-summary-component/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Results Summary Component

![qr-code-component](https://github.com/user-attachments/assets/386d2e87-32d3-4911-b632-d785f01e67c0)

[Live Demo](http://achal-socials.vercel.app/github/frontendmentor/newbie/results-summary-component/)

[Results Summary Component](https://www.frontendmentor.io/challenges/results-summary-component-CE_K6s0maV) challenge solution on [Frontend Mentor](https://www.frontendmentor.io)
<br><br>

## Built With

- Vite
- React
- TypeScript
- Tailwind CSS
28 changes: 28 additions & 0 deletions CODE/NEWBIE/results-summary-component/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'

export default tseslint.config(
{ ignores: ['dist'] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
)
13 changes: 13 additions & 0 deletions CODE/NEWBIE/results-summary-component/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/fem.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Results Summary Component</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit 2659bc7

Please sign in to comment.