mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
|
import { funcTransport } from '@connectv/sdh/transport';
|
||
|
import { useTheme } from '@codedoc/core/transport';
|
||
|
|
||
|
import { theme } from '../theme';
|
||
|
|
||
|
|
||
|
export function installTheme() { useTheme(theme); }
|
||
|
export const installTheme$ = /*#__PURE__*/funcTransport(installTheme);
|