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
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
<h2>Material referente as entregas dos desafios no curso de React.JS na Coderhouse Brasil</h2>
## Para Ver:

<hr>

<h3> Aulas com entrega:</h3>
<ul>
<li>Aula 2 ( App com Vite + React )</li>
### Passo-a-passo

</ul>
1º - ```git clone https://github.com/AleRzendee/cursoCoderhouseReactJS.git ``` <br>
2º - ```git switch Aula-4-CODER-ReactJS``` <br>
3º - ```cd landing-page``` <br>
4º - ```npm install``` <br>
5º - ```npm run dev```

<span>Acesse as aulas pelas branches</span>
<h1>Descrição:</h1>
<hr>
<div>
<p>25/11 Desafio ( Crie sua Landing ) da Aula 4 ( Componentes I ) do curso de React.js na CoderHouse; Turma #63750 de 2024.</p>
</div>
24 changes: 24 additions & 0 deletions landing-page/.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?
38 changes: 38 additions & 0 deletions landing-page/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import js from '@eslint/js'
import globals from 'globals'
import react from 'eslint-plugin-react'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'

export default [
{ ignores: ['dist'] },
{
files: ['**/*.{js,jsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
parserOptions: {
ecmaVersion: 'latest',
ecmaFeatures: { jsx: true },
sourceType: 'module',
},
},
settings: { react: { version: '18.3' } },
plugins: {
react,
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...js.configs.recommended.rules,
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
...reactHooks.configs.recommended.rules,
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
]
13 changes: 13 additions & 0 deletions landing-page/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="shortcut icon" href="./src/assets/react.svg" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>1º LP com React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading