1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-12-05 15:22:09 +03:00

Fix MainSplit IProps

This commit is contained in:
Michael Telatynski
2021-09-16 11:22:55 +01:00
parent fd24511d42
commit febd3df5ac

View File

@@ -24,7 +24,7 @@ import { Direction } from "re-resizable/lib/resizer";
interface IProps {
resizeNotifier: ResizeNotifier;
collapsedRhs?: boolean;
panel: JSX.Element;
panel?: JSX.Element;
}
@replaceableComponent("structures.MainSplit")