Some checks failed
Release / build (windows-latest) (push) Has been cancelled
Each profile gets its own SQLite database file for complete data isolation. Profile selection screen at launch, sidebar switcher for quick switching, and optional 4-6 digit PIN for privacy. Existing database becomes the default profile with seamless upgrade. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
384 B
TypeScript
14 lines
384 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "./App";
|
|
import { ProfileProvider } from "./contexts/ProfileContext";
|
|
import "./i18n/config";
|
|
import "./styles.css";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
<React.StrictMode>
|
|
<ProfileProvider>
|
|
<App />
|
|
</ProfileProvider>
|
|
</React.StrictMode>,
|
|
);
|