1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Chore: Mobile: Migrate global-style.js to TypeScript (#10091)

This commit is contained in:
Henry Heino
2024-03-09 03:15:13 -08:00
committed by GitHub
parent bae16f7a65
commit d7401d70a7
31 changed files with 37 additions and 35 deletions

View File

@@ -1,7 +1,7 @@
import { useEffect, useState, useMemo, useRef } from 'react';
import shim from '@joplin/lib/shim';
import Setting from '@joplin/lib/models/Setting';
const { themeStyle } = require('../../global-style.js');
import { themeStyle } from '../../global-style';
import markupLanguageUtils from '@joplin/lib/markupLanguageUtils';
import useEditPopup from './useEditPopup';
import Logger from '@joplin/utils/Logger';