« React + Vite + TS » : différence entre les versions
Apparence
Aucun résumé des modifications |
|||
Ligne 47 : | Ligne 47 : | ||
</kode> | </kode> | ||
= [https://www.snowpack.dev | = [https://www.snowpack.dev Snowpack] = |
Version du 25 octobre 2024 à 21:07
Links
Exemple
public/index.html |
<body>
<!-- hosts the React application -->
<div id="app"></div>
<!-- import index.js generated from index.jsx by a bundler such as Snowpack -->
<script type="module" src="/dist/index.js"></script>
</body>
|
src/index.jsx |
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('app')
);
|
package.json |
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"snowpack": "^3.8.8"
}
}
|
# install the NodeJS packages
npm i
# run the app
npm start
|