mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
|
import * as React from 'react';
|
||
|
import Base, { BlockProps } from './Base';
|
||
|
|
||
|
interface ParagraphProps extends BlockProps {}
|
||
|
|
||
|
const Paragraph: React.SFC<ParagraphProps> = props => <Base {...props} component="div" />;
|
||
|
|
||
|
export default Paragraph;
|