You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
369 B
17 lines
369 B
2 years ago
|
import React from 'react';
|
||
|
import { Card } from 'antd';
|
||
|
|
||
|
const { Meta } = Card;
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Card
|
||
|
hoverable
|
||
|
style={{ width: 240 }}
|
||
|
cover={<img alt="example" src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" />}
|
||
|
>
|
||
|
<Meta title="Europe Street beat" description="www.instagram.com" />
|
||
|
</Card>
|
||
|
);
|
||
|
|
||
|
export default App;
|