mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
|
import React from 'react';
|
||
|
import { Card } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<div className="site-card-border-less-wrapper">
|
||
|
<Card title="Card title" bordered={false} style={{ width: 300 }}>
|
||
|
<p>Card content</p>
|
||
|
<p>Card content</p>
|
||
|
<p>Card content</p>
|
||
|
</Card>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default App;
|