mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
import { themeStyle } from '../components/global-style';
|
|
|
|
export default (themeId: number) => {
|
|
const theme = themeStyle(themeId);
|
|
return {
|
|
root: theme.rootStyle,
|
|
};
|
|
};
|