mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
import { themeStyle } from '../components/global-style';
|
|
|
|
export default (themeId: number) => {
|
|
const theme = themeStyle(themeId);
|
|
return {
|
|
root: {
|
|
flex: 1,
|
|
backgroundColor: theme.backgroundColor,
|
|
},
|
|
};
|
|
};
|