Added Statistics calculation
Statistics now show calculated values
This commit is contained in:
parent
fe87374e47
commit
fc0f69dacb
2147 changed files with 141321 additions and 39 deletions
12
node_modules/@mui/x-internals/esm/useComponentRenderer/useComponentRenderer.d.ts
generated
vendored
Normal file
12
node_modules/@mui/x-internals/esm/useComponentRenderer/useComponentRenderer.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import * as React from 'react';
|
||||
export type RenderProp<Props, State = {}> = ((props: Props, state: State) => React.ReactElement<unknown>) | React.ReactElement<Props>;
|
||||
/**
|
||||
* Resolves the rendering logic for a component.
|
||||
* Handles three scenarios:
|
||||
* 1. A render function that receives props and state
|
||||
* 2. A React element
|
||||
* 3. A default element
|
||||
*
|
||||
* @ignore - internal hook.
|
||||
*/
|
||||
export declare function useComponentRenderer<Props extends React.HTMLAttributes<any>, State extends Record<string, any>>(defaultElement: keyof React.JSX.IntrinsicElements | React.ComponentType<Props>, render: RenderProp<Props, State> | undefined, props: Props, state?: State): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue