main
|
Last change
on this file since 8a47b30 was 0c86e77, checked in by Filip Gavrilovski <filipgavrilovski28@…>, 6 months ago |
|
add axios, auth context, simple working register form on frontend
|
-
Property mode
set to
100644
|
|
File size:
325 bytes
|
| Line | |
|---|
| 1 | import { StrictMode } from "react";
|
|---|
| 2 | import { createRoot } from "react-dom/client";
|
|---|
| 3 | import App from "./App.tsx";
|
|---|
| 4 | import { AuthProvider } from "./context/authContext.tsx";
|
|---|
| 5 | import "./index.css";
|
|---|
| 6 |
|
|---|
| 7 | createRoot(document.getElementById("root")!).render(
|
|---|
| 8 | <StrictMode>
|
|---|
| 9 | <AuthProvider>
|
|---|
| 10 | <App />
|
|---|
| 11 | </AuthProvider>
|
|---|
| 12 | </StrictMode>,
|
|---|
| 13 | );
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.