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
8
frontend/node_modules/react-pdf/src/Message.tsx
generated
vendored
Normal file
8
frontend/node_modules/react-pdf/src/Message.tsx
generated
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
type MessageProps = {
|
||||
children?: React.ReactNode;
|
||||
type: 'error' | 'loading' | 'no-data';
|
||||
};
|
||||
|
||||
export default function Message({ children, type }: MessageProps): React.ReactElement {
|
||||
return <div className={`react-pdf__message react-pdf__message--${type}`}>{children}</div>;
|
||||
}
|
||||
Reference in a new issue