mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
21 lines
505 B
TypeScript
21 lines
505 B
TypeScript
import React, { FC } from 'react';
|
|
import { ImageSwitcher } from '../ImageSwitcher';
|
|
import * as styles from './styles.scss';
|
|
|
|
interface IProps {}
|
|
|
|
const NodeImageBlock: FC<IProps> = ({}) => (
|
|
<div>
|
|
<ImageSwitcher total={5} current={2} />
|
|
|
|
<div className={styles.image_container}>
|
|
<img
|
|
className={styles.image}
|
|
src="http://37.192.131.144/full/attached/2019/08/e4fb2a1d0a2e20d499aaa1f5f83a7115.jpg"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export { NodeImageBlock };
|