Numerous Bug Fixes
Some checks failed
Automated Container Build / build-and-push (push) Failing after 8s
Some checks failed
Automated Container Build / build-and-push (push) Failing after 8s
This commit is contained in:
parent
02eefdac0e
commit
267d429122
959 changed files with 145571 additions and 221 deletions
9
frontend/node_modules/react-pdf/src/PageContext.tsx
generated
vendored
Normal file
9
frontend/node_modules/react-pdf/src/PageContext.tsx
generated
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
'use client';
|
||||
|
||||
import { createContext } from 'react';
|
||||
|
||||
import type { PageContextType } from './shared/types.js';
|
||||
|
||||
const pageContext: React.Context<PageContextType> = createContext<PageContextType>(null);
|
||||
|
||||
export default pageContext;
|
||||
Reference in a new issue