mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { Platform } from "react-native";
|
|
|
|
export const EDITOR_URI =
|
|
Platform.OS === "android"
|
|
? "file:///android_asset/index.html"
|
|
: "web.bundle/index.html";
|