refactor: Stats component (#5610)

refactor: stats component
This commit is contained in:
Aakansha Doshi
2022-08-22 17:18:25 +05:30
committed by GitHub
parent ba2c86fe1b
commit 32d82219b1
5 changed files with 40 additions and 30 deletions

View File

@ -666,10 +666,15 @@ const ExcalidrawWrapper = () => {
[langCode],
);
const renderCustomStats = () => {
const renderCustomStats = (
elements: readonly NonDeletedExcalidrawElement[],
appState: AppState,
) => {
return (
<CustomStats
setToast={(message) => excalidrawAPI!.setToast({ message })}
appState={appState}
elements={elements}
/>
);
};