« React + Vite + TS » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « = Links = * [https://react.dev React] ») |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
= Links = | = Links = | ||
* [https://react.dev React] | * [https://react.dev React] | ||
= Exemple = | |||
<filebox fn='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> | |||
</html> | |||
</filebox> |
Version du 25 octobre 2024 à 21:00
Links
Exemple
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> </html> |