Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
"react/prop-types": 0
},
}
24 changes: 24 additions & 0 deletions .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?
19 changes: 4 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
<h2>Material referente as entregas dos desafios no curso de React.JS na Coderhouse Brasil</h2>

<h1>Descrição:</h1>
<hr>

<h3> Aulas com entrega:</h3>
<ul>
<li>Aula 2 ( App com Vite + React )</li>
<li>Aula 3 ( Menu E-COMMERCE )</li>
<li>Aula 4 ( Criando uma LP ( Landing Page) )</li>
<li>Aula 5 ( Contador com botão )</li>
<li>Aula 6 ( Catálogo com maps e promises )</li>
<li>Aula 7 ( Detalhe do Produto )</li>

</ul>

<span>Acesse as aulas pelas branches</span>
<div>
<p> 09/12 Primeira Entrega Parcial do Projeto Final da Aula 8 ( Roteamento e navegação ) do curso de React.js na CoderHouse; Turma #63750 de 2024.</p>
</div>
13 changes: 13 additions & 0 deletions 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="src/assets/nikelogoweb.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nike</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading