--- order: 3 title: zh-CN: 带内容的例子 en-US: Example with content --- ## zh-CN 带内容的例子,可以优先展示页面的主要信息。 ## en-US An example with content that gives priority to the main information of the page. ```jsx import { PageHeader, Typography } from 'antd'; const { Paragraph } = Typography; const routes = [ { path: 'index', breadcrumbName: 'First-level Menu', }, { path: 'first', breadcrumbName: 'Second-level Menu', }, { path: 'second', breadcrumbName: 'Third-level Menu', }, ]; const content = (
Ant Design interprets the color system into two levels: a system-level color system and a product-level color system. Ant Design's design team preferred to design with the HSB color model, which makes it easier for designers to have a clear psychological expectation of color when adjusting colors, as well as facilitate communication in teams.

start Quick Start info Product Info doc Product Doc

); const extraContent = ( content ); ReactDOM.render(
{content}
{extraContent}
, mountNode, ); ```