Série: ViteReact
javascript
10 linhas
· Atualizado 2026-02-03
main.jsx
ViteReact/my-vite-react-app/src/main.jsx
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)
Artigos relacionados
ViteReact
javascript
Atualizado 2026-02-03
eslint.config.js
eslint.config.js — javascript source code from the ViteReact learning materials (ViteReact/my-vite-react-app/eslint.config.js).
Ler artigo →
ViteReact
javascript
Atualizado 2026-02-03
App.jsx
App.jsx — javascript source code from the ViteReact learning materials (ViteReact/my-vite-react-app/src/App.jsx).
Ler artigo →
ViteReact
javascript
Atualizado 2026-02-03
vite.config.js
vite.config.js — javascript source code from the ViteReact learning materials (ViteReact/my-vite-react-app/vite.config.js).
Ler artigo →