17 lines
376 B
TypeScript
17 lines
376 B
TypeScript
//import './bootstrap';
|
|
import '../css/app.css'
|
|
import App from "./pages/App"
|
|
import { createRoot } from 'react-dom/client'
|
|
import React from 'react'
|
|
import './customPrototypes'
|
|
|
|
|
|
//const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
|
|
|
|
const container = document.getElementById('app')
|
|
if (container) {
|
|
const root = createRoot(container)
|
|
root.render(<App />)
|
|
}
|
|
|