import React, { type PropsWithChildren } from "react"; import type { IAuditLogContext } from "./types"; export const AuditLogContext = React.createContext({}); export const AuditLogContextProvider: React.FC< PropsWithChildren > = ({ create, get, update, children }) => { return ( {children} ); };