fix: ux issues

This commit is contained in:
jialin
2026-05-26 19:16:50 +08:00
committed by jialin
parent acb90531b2
commit c6e34db329
27 changed files with 354 additions and 244 deletions
@@ -0,0 +1,11 @@
import { createContext } from 'react';
export interface FormContextValue {
storageClassList: Global.BaseOption<string>[];
}
export const FormContext = createContext<FormContextValue>({
storageClassList: []
});
export default FormContext;