isitfake / FrontEnd /src /main.jsx
Jennigwen's picture
Feat : Implement Translation (English & Indonesia)
4b823fd
Raw
History Blame Contribute Delete
245 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import './i18n'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)