@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
15 lines (12 loc) • 365 B
JavaScript
import { createContext, useContext } from 'react';
const AppShellContext = createContext({
zIndex: 1e3,
fixed: false,
layout: "default"
});
const AppShellProvider = AppShellContext.Provider;
function useAppShellContext() {
return useContext(AppShellContext);
}
export { AppShellProvider, useAppShellContext };
//# sourceMappingURL=AppShell.context.js.map