1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/components/node/ImageSwitcher/index.tsx
2019-08-20 22:14:12 +07:00

15 lines
291 B
TypeScript

import React, { FC } from 'react';
import * as styles from './styles.scss';
const ImageSwitcher: FC<{}> = () => (
<div className={styles.wrap}>
<div className={styles.switcher}>
<div />
<div />
<div />
<div />
</div>
</div>
);
export { ImageSwitcher };