mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
22 lines
474 B
TypeScript
22 lines
474 B
TypeScript
|
import { Image } from 'antd';
|
||
|
import React from 'react';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Image
|
||
|
width={200}
|
||
|
preview={{
|
||
|
imageRender: () => (
|
||
|
<video
|
||
|
muted
|
||
|
width="100%"
|
||
|
controls
|
||
|
src="https://mdn.alipayobjects.com/huamei_iwk9zp/afts/file/A*uYT7SZwhJnUAAAAAAAAAAAAADgCCAQ"
|
||
|
/>
|
||
|
),
|
||
|
}}
|
||
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|