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
24 changes: 24 additions & 0 deletions pokelista/.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?
8 changes: 8 additions & 0 deletions pokelista/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Instruções para rodar o código

## Passos
1. Abrir linha de comando apontada para a pasta 'poketeste'
2. Executar o comando 'yarn'
3. Executar o comando 'yarn dev'
4. Abrir em um navegador o link : http://localhost:3000

16 changes: 16 additions & 0 deletions pokelista/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./src/reset.css">
<link rel="icon" type="image/png" href="./src/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Poke Lista</title>

<link href='https://fonts.googleapis.com/css?family=Muli' rel='stylesheet'>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading