ant-design/components/typography/demo/paragraph-debug.tsx
二货爱吃白萝卜 2cdf586291
chore: fix lint (#43873)
* chore: fix lint

* chore: fix lint

* test: fix 16

* fix: lint
2023-07-28 16:17:43 +08:00

102 lines
3.6 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import { Typography } from 'antd';
const { Title, Paragraph, Text } = Typography;
const App: React.FC = () => (
<>
<Title>Introduction</Title>
<Paragraph>
In the process of internal desktop applications development, many different design specs and
implementations would be involved, which might cause designers and developers difficulties and
duplication and reduce the efficiency of development.
</Paragraph>
<Paragraph>
After massive project practice and summaries, Ant Design, a design language for background
applications, is refined by Ant UED Team, which aims to
<Text strong>
uniform the user interface specs for internal background projects, lower the unnecessary
cost of design differences and implementation and liberate the resources of design and
front-end development
</Text>
.
</Paragraph>
<Title level={2}>Guidelines and Resources</Title>
<Paragraph>
We supply a series of design principles, practical patterns and high quality design resources
(<Text code>Sketch</Text> and <Text code>Axure</Text>), to help people create their product
prototypes beautifully and efficiently.
</Paragraph>
<Paragraph>
<ul>
<li>
<a href="/docs/spec/proximity">Principles</a>
</li>
<li>
<a href="/docs/pattern/navigation">Patterns</a>
</li>
<li>
<a href="/docs/resource/download">Resource Download</a>
</li>
</ul>
</Paragraph>
<Title id="intro"></Title>
<Paragraph>
</Paragraph>
<Paragraph>
Ant Design<Text mark></Text>
<Text strong></Text>
</Paragraph>
<Title level={2}></Title>
<Paragraph>
<Text code>Sketch</Text>
<Text code>Axure</Text>
</Paragraph>
<Paragraph>
<ul>
<li>
<a href="/docs/spec/proximity"></a>
</li>
<li>
<a href="/docs/pattern/navigation"></a>
</li>
<li>
<a href="/docs/resource/download"></a>
</li>
</ul>
</Paragraph>
<Paragraph>
<ul>
<li>I am an unordered item</li>
<li>
I am an unordered item with an ordered sublist
<ol>
<li>I am ordered</li>
</ol>
<ul>
<li>I am unordered</li>
</ul>
</li>
</ul>
<ol>
<li>
Ordered list item with unordered sublist
<ul>
<li>I am unordered!</li>
<li>I am also unordered!</li>
</ul>
</li>
</ol>
</Paragraph>
</>
);
export default App;