fix: ux issues
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { createContext } from 'react';
|
||||
|
||||
export interface FormContextValue {
|
||||
storageClassList: Global.BaseOption<string>[];
|
||||
}
|
||||
|
||||
export const FormContext = createContext<FormContextValue>({
|
||||
storageClassList: []
|
||||
});
|
||||
|
||||
export default FormContext;
|
||||
Reference in New Issue
Block a user