
npm install dock-panel面向 React 的 Dock 布局组件,类似 .NET Window Forms 中的 Dock 布局模式。
``bash`
npm i dock-panel --save
`tsx
import React from "react";
import { DockPanel, DockType } from "dock-panel";
function App() {
return (
style={{ background: "red", width: 100 }}
>
left
style={{ background: "green", height: "20%" }}
>
top
style={{ background: "blue", height: 100 }}
>
bottom
fill
);
}
``