main
|
Last change
on this file since 99c1e45 was b62cefc, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added frontend and imporoved AI Suggestions service
|
-
Property mode
set to
100644
|
|
File size:
322 bytes
|
| Line | |
|---|
| 1 | import { StrictMode } from 'react'
|
|---|
| 2 | import { createRoot } from 'react-dom/client'
|
|---|
| 3 | import { BrowserRouter } from 'react-router-dom'
|
|---|
| 4 | import './index.css'
|
|---|
| 5 | import App from './App.tsx'
|
|---|
| 6 |
|
|---|
| 7 | createRoot(document.getElementById('root')!).render(
|
|---|
| 8 | <StrictMode>
|
|---|
| 9 | <BrowserRouter>
|
|---|
| 10 | <App />
|
|---|
| 11 | </BrowserRouter>
|
|---|
| 12 | </StrictMode>,
|
|---|
| 13 | )
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.