mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-04 11:19:39 -06:00
7 lines
127 B
JavaScript
7 lines
127 B
JavaScript
import { createContext } from 'react';
|
|
|
|
export const OpenCloudContext = createContext({
|
|
theme: null,
|
|
config: null,
|
|
});
|