React + Vite + TS

De Banane Atomic
Aller à la navigationAller à la recherche

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')
);
Bash.svg
# install the NodeJS packages
npm i

# start
npm start