UNPKG

itk-viewer-bootstrap-ui

Version:

[![npm version](https://badge.fury.io/js/itk-viewer-bootstrap-ui.svg)](https://badge.fury.io/js/itk-viewer-bootstrap-ui) ![react-bootstrap version](https://img.shields.io/badge/React%20Bootstap-%3E=1.6.1-brightgreen.svg) [![Documentation Status](https://r

37 lines (33 loc) 1.05 kB
import React from 'react' import Panel from './Panel' import MainInterface from './Main/MainInterface' import LayersInterface from './Layers/LayersInterface' import CompareControls from './Layers/CompareControls' import ImagesInterface from './Images/ImagesInterface' import WidgetsInterface from './Widgets/WidgetsInterface' import PointSetInterface from './PointSetInterface' import AppToolbar from './AppToolbar' import PlaneSliders from './Main/PlaneSliders' function App({ service }) { return ( <> <div className="sidePanel"> <div className="interactive-root"> <AppToolbar service={service} /> <Panel service={service}> <MainInterface /> <LayersInterface /> <CompareControls /> <WidgetsInterface /> <ImagesInterface advancedInputs={false} /> <PointSetInterface /> </Panel> </div> </div> <div className="footer"> <PlaneSliders service={service} /> </div> </> ) } export default App