From 5d86e1923436a554c4cc12c169faba0054b23b65 Mon Sep 17 00:00:00 2001 From: joseph izang Date: Wed, 30 Jun 2021 22:55:37 +0100 Subject: [PATCH] create rootView component --- .../src/lib/components/rootView.tsx | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx b/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx index 1ffcb603d4..3c951b7ebf 100644 --- a/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx +++ b/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx @@ -1,9 +1,24 @@ import React from 'react' +import ActiveTile from './activeTile' + +interface RowViewProps { + localPluginButtonText: string + +} function RootView () { return ( -
-
+
+
+ + +
+
+ +
+ +
+
) }