Skip to content

Commit

Permalink
TP3
Browse files Browse the repository at this point in the history
  • Loading branch information
Phoenix7290 committed Sep 3, 2024
1 parent eb5998d commit 57493c1
Show file tree
Hide file tree
Showing 65 changed files with 549 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,27 @@ export default function App() {
<a href="src/TP2/16/index.html">TP 2.16</a>
</div>
</section>
<section>
<h1>TP 3</h1>
<div className='container'>
<a href="src/TP3/01/index.html">TP 3.1</a>
<a href="src/TP3/02/index.html">TP 3.2</a>
<a href="src/TP3/03/index.html">TP 3.3</a>
<a href="src/TP3/04/index.html">TP 3.4</a>
<a href="src/TP3/05/index.html">TP 3.5</a>
<a href="src/TP3/06/index.html">TP 3.6</a>
<a href="src/TP3/07/index.html">TP 3.7</a>
<a href="src/TP3/08/index.html">TP 3.8</a>
<a href="src/TP3/09/index.html">TP 3.9</a>
<a href="src/TP3/10/index.html">TP 3.10</a>
<a href="src/TP3/11/index.html">TP 3.11</a>
<a href="src/TP3/12/index.html">TP 3.12</a>
<a href="src/TP3/13/index.html">TP 3.13</a>
<a href="src/TP3/14/index.html">TP 3.14</a>
<a href="src/TP3/15/index.html">TP 3.15</a>
<a href="src/TP3/16/index.html">TP 3.16</a>
</div>
</section>
</main>
)
}
5 changes: 5 additions & 0 deletions src/TP3/01/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/01/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/01/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/01/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/02/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/02/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/02/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/02/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/03/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/03/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/03/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/03/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/04/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/04/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/04/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/04/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/05/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/05/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/05/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/05/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/06/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/06/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/06/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/06/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/07/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/07/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/07/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/07/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/08/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/08/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/08/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/08/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/09/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Hello World</div>
)
}
13 changes: 13 additions & 0 deletions src/TP3/09/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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="main.jsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions src/TP3/09/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
10 changes: 10 additions & 0 deletions src/TP3/09/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './main.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
5 changes: 5 additions & 0 deletions src/TP3/10/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function App() {
return (
<div>Vamo que vamo!</div>
)
}
Loading

0 comments on commit 57493c1

Please sign in to comment.