azure-devops-ui
Version:
React components for building web UI in Azure DevOps
11 lines (10 loc) • 645 B
TypeScript
import "../../CommonImports";
import "../../Core/core.css";
import "./SingleLayerMasterPanel.css";
import * as React from "react";
import { ISingleLayerMasterPanelHeaderProps, ISingleLayerMasterPanelProps } from "./SingleLayerMasterPanel.Props";
/**
* Props-controlled implementation of MasterPanel for experiences that don't need the layering of MasterDetailsContext
*/
export declare const SingleLayerMasterPanel: React.FunctionComponent<React.PropsWithChildren<ISingleLayerMasterPanelProps>>;
export declare const SingleLayerMasterPanelHeader: React.FunctionComponent<React.PropsWithChildren<ISingleLayerMasterPanelHeaderProps>>;