mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 08:59:15 +08:00
22 lines
314 B
Markdown
22 lines
314 B
Markdown
# 顶部导航 + 侧边栏
|
|
|
|
顶级导航在头部,次级导航在侧边栏。
|
|
|
|
---
|
|
|
|
````jsx
|
|
ReactDOM.render(
|
|
<div className="ant-common-layout">
|
|
布局示例
|
|
</div>
|
|
, document.getElementById('spec-layout-demo-top-aside'));
|
|
````
|
|
|
|
````css
|
|
.ant-common-layout {
|
|
background: #f9f9f9;
|
|
padding: 24px;
|
|
}
|
|
````
|
|
|