feat: add distance value object and ci workflows

This commit is contained in:
Bernard Ngandu
2025-10-10 16:13:48 +02:00
parent d3338e8901
commit 2ed7a48d36
44 changed files with 4263 additions and 1370 deletions
+11 -10
View File
@@ -1,16 +1,17 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { I18nextProvider } from 'react-i18next'
import 'leaflet/dist/leaflet.css'
import { StrictMode } from "react";
import '@/index.css'
import App from '@/App.tsx'
import { i18n } from '@/lib/i18n'
import { createRoot } from "react-dom/client";
import { I18nextProvider } from "react-i18next";
import "leaflet/dist/leaflet.css";
createRoot(document.getElementById('root')!).render(
import "@/index.css";
import App from "@/App";
import { i18n } from "@/lib/i18n";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<I18nextProvider i18n={i18n}>
<App />
</I18nextProvider>
</StrictMode>,
)
</StrictMode>
);