From a0c17b94c416a8c5e8972b1f842e33fb5697a422 Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Thu, 23 Mar 2023 04:12:31 -0700 Subject: [PATCH] Add track controls Summary: Project: https://docs.google.com/document/d/1x-1ShlxXCM2od9JMO6PP14Cuqq0OrVe1Qd7FUwTos9A/edit#heading=h.fiq3qxllvkl Reviewed By: ivanmisuno Differential Revision: D44306047 fbshipit-source-id: 393741f9255dea3d582ac43a4733aa835f5d4a27 --- desktop/flipper-plugin/src/ui/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/flipper-plugin/src/ui/Layout.tsx b/desktop/flipper-plugin/src/ui/Layout.tsx index 2b14d72ed..6d9cc8b1b 100644 --- a/desktop/flipper-plugin/src/ui/Layout.tsx +++ b/desktop/flipper-plugin/src/ui/Layout.tsx @@ -72,6 +72,7 @@ export type SplitLayoutProps = { gap?: Spacing; children: [React.ReactNode, React.ReactNode]; style?: CSSProperties; + className?: string; } & SplitHorizontalResizableProps & SplitVerticalResizableProps;