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/containers/main/BottomContainer/index.tsx
2023-11-20 22:35:07 +06:00

19 lines
393 B
TypeScript

import { FC } from 'react';
import { PlayerView } from '~/containers/player/PlayerView';
import styles from './styles.module.scss';
type IProps = {};
const BottomContainer: FC<IProps> = () => (
<div className={styles.wrap}>
<div className={styles.content}>
<div className={styles.padder}>
<PlayerView />
</div>
</div>
</div>
);
export { BottomContainer };