Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jogo da Velha #29

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
1,337 changes: 1,337 additions & 0 deletions code/03 React Essentials/01-starting-project/package-lock.json

Large diffs are not rendered by default.

22 changes: 14 additions & 8 deletions code/03 React Essentials/01-starting-project/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
function Header() {
return (
<header>
<img src="src/assets/react-core-concepts.png" alt="Stylized atom" />
<h1>React Essentials</h1>
<p>
Fundamental React concepts you will need for almost any app you are
going to build!
</p>
</header>
);
}

function App() {
return (
<div>
<header>
<img src="src/assets/react-core-concepts.png" alt="Stylized atom" />
<h1>React Essentials</h1>
<p>
Fundamental React concepts you will need for almost any app you are
going to build!
</p>
</header>
<Header />
<main>
<h2>Time to get started!</h2>
</main>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
},
"keywords": [],
"description": ""
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
<title>React Tic-Tac-Toe</title>
</head>
<body>
<header>
<img src="game-logo.png" alt="Hand-draw" />
<h1>Tic-Tac-Toe</h1>
</header>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
Expand Down
Loading