mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
feat: hook up the invice customize api
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
// @ts-nocheck
|
||||
import React, { createContext, useContext } from 'react';
|
||||
|
||||
const DrawerContext = createContext();
|
||||
interface DrawerContextValue {
|
||||
name: string;
|
||||
payload: Record<string, any>;
|
||||
}
|
||||
|
||||
const DrawerContext = createContext<DrawerContextValue>(
|
||||
{} as DrawerContextValue,
|
||||
);
|
||||
|
||||
/**
|
||||
* Account form provider.
|
||||
|
||||
Reference in New Issue
Block a user