create rootView component

pull/1344/head
joseph izang 4 years ago
parent 039b07293d
commit 5d86e19234
  1. 19
      libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx

@ -1,9 +1,24 @@
import React from 'react' import React from 'react'
import ActiveTile from './activeTile'
interface RowViewProps {
localPluginButtonText: string
}
function RootView () { function RootView () {
return ( return (
<div> <div id="pluginManager" data-id="pluginManagerComponentPluginManager">
<header></header> <header className="form-group pluginSearch plugins-header py-3 px-4 border-bottom" data-id="pluginManagerComponentPluginManagerHeader">
<input type="text" className="form-control" placeholder="Search" data-id="pluginManagerComponentSearchInput" />
<button className="btn btn-secondary text-dark border-0" data-id="pluginManagerComponentPluginSearchButton">Connect to a Local Plugin</button>
</header>
<section data-id="pluginManagerComponentPluginManagerSection">
<ActiveTile />
<div className="list-group list-group-flush plugins-list-group" data-id="pluginManagerComponentActiveTile">
</div>
</section>
</div> </div>
) )
} }

Loading…
Cancel
Save