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