UNPKG

@equinor/eds-core-react

Version:

The React implementation of the Equinor Design System

9 lines (6 loc) 173 B
import { createContext } from 'react'; const initialState = { variant: 'body' }; const InnerContext = /*#__PURE__*/createContext(initialState); export { InnerContext };