feat: attempt to fix the crud with auth
This commit is contained in:
9
contexts/FormItem/FormItemContext.ts
Normal file
9
contexts/FormItem/FormItemContext.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
|
||||
interface FormItemContextValue {
|
||||
id: string;
|
||||
}
|
||||
|
||||
export const FormItemContext = React.createContext<FormItemContextValue>(
|
||||
{} as FormItemContextValue
|
||||
);
|
||||
Reference in New Issue
Block a user