UNPKG

1.09 kBMarkdownView Raw
1# h111111
2## h22222
3### h333333
4#### h4444444
5> `sdsdsd`
6
7## asd ##
8
9- LinkStyle
10- LinkStyle2
11
121. 323
132. 232
143. sss
15* MSAudioSendPayload
16* MSAudioSendSignal
17
18A | B | C
19--|--|--
20A1 | B1 | C1
21A2 | B2 | C2
22A3 | B3 | C3
23
24-----------
25
26````js
27import {Button, DatePicker} from 'antd';
28import React from 'react';
29import ReactDom from 'react-dom';
30````
31
32````js
33export const Comp = (props) => {
34 return (
35 <div>
36 <DatePicker />
37 <Button type="primary">wo shi md</Button>
38 <Button type="primary">wo shi md</Button>
39 <Button type="primary">wo shi md</Button><Button type="primary">wo shi md</Button><Button type="primary">wo shi md</Button>
40 </div>
41 )
42}
43
44````
45
46
47## 组件B
48
49````js
50export class CompB extends React.Component{
51 render() {
52 return(
53 <div>
54 <Button type="error">CompB</Button>
55 </div>
56 )
57 }
58}
59
60export const CompA = (props) => {
61 return (
62 <div>
63 <Button type="primary">CompA</Button>
64 <DatePicker />
65
66 </div>
67 )
68}
69
70````
\No newline at end of file