Skip to content

Commit

Permalink
Refactoring HTML to React (#45)
Browse files Browse the repository at this point in the history
* created vite and updated componenents

* pair programmed to convert html to jsx

* Delete README.md

* Rename oldREADME.md to README.md

---------

Co-authored-by: Isai Chaidez <isaichaidez@gmail.com>
  • Loading branch information
brockbritton and Arvoya authored May 31, 2024
1 parent 4e30070 commit a3240e3
Show file tree
Hide file tree
Showing 21 changed files with 6,438 additions and 640 deletions.
21 changes: 21 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
27 changes: 26 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
.vercel
vercel.json
vercel.json

# 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?
Binary file removed assets/.DS_Store
Binary file not shown.
Loading

0 comments on commit a3240e3

Please sign in to comment.