1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-mobile/utils/createRootStyle.ts

9 lines
174 B
TypeScript
Raw Normal View History

import { themeStyle } from '../components/global-style';
export default (themeId: number) => {
const theme = themeStyle(themeId);
return {
root: theme.rootStyle,
};
};