worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
19
node_modules/@mui/material/esm/Stepper/StepperContext.js
generated
vendored
Normal file
19
node_modules/@mui/material/esm/Stepper/StepperContext.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
/**
|
||||
* Provides information about the current step in Stepper.
|
||||
*/
|
||||
const StepperContext = /*#__PURE__*/React.createContext({});
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
StepperContext.displayName = 'StepperContext';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current StepperContext or an empty object if no StepperContext
|
||||
* has been defined in the component tree.
|
||||
*/
|
||||
export function useStepperContext() {
|
||||
return React.useContext(StepperContext);
|
||||
}
|
||||
export default StepperContext;
|
||||
Loading…
Add table
Add a link
Reference in a new issue